Skip to content

Commit

Permalink
Merge pull request #23 from ut-issl/remove-set-output
Browse files Browse the repository at this point in the history
Remove set-output
  • Loading branch information
sksat authored May 9, 2023
2 parents 8999383 + 6df7152 commit 4b77c58
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/generate_c2a_core_reference.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ jobs:
hash_short=$(git rev-parse --short HEAD)
echo "commit hash: ${hash}"
echo "commit hash(short): ${hash_short}"
echo "::set-output name=hash::${hash}"
echo "::set-output name=hash_short::${hash_short}"
echo "hash=${hash}" >> "$GITHUB_OUTPUT"
echo "hash_short=${hash_short}" >> "$GITHUB_OUTPUT"
- name: clean previous html
working-directory: ./docs
Expand Down Expand Up @@ -83,10 +83,10 @@ jobs:
git add .
if ! git diff --exit-code --cached; then
echo "diff"
echo "::set-output name=update::true"
echo "update=true" >> "$GITHUB_OUTPUT"
else
echo "There is no update"
echo "::set-output name=update::false"
echo "update=false" >> "$GITHUB_OUTPUT"
fi
- name: add update date info for status badge
Expand Down

0 comments on commit 4b77c58

Please sign in to comment.