Skip to content

Commit

Permalink
ci: Use GITHUB_OUTPUT envvar instead of set-output command (#471)
Browse files Browse the repository at this point in the history
* ci: Use GITHUB_OUTPUT envvar instead of set-output command

* Quote envvar to match documentation
  • Loading branch information
arunsathiya authored Apr 1, 2024
1 parent 8a92819 commit 8407c66
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
LASTPATCH=$(git describe --tags | cut -d- -f1 | cut -d. -f3)
PATCH=$(($LASTPATCH+1))
echo "New tag name: 2.1.${PATCH}"
echo "::set-output name=tagname::2.1.${PATCH}"
echo "tagname=2.1.${PATCH}" >> "$GITHUB_OUTPUT"
- name: Set up Ruby
uses: ruby/setup-ruby@v1
Expand Down

0 comments on commit 8407c66

Please sign in to comment.