We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 24212b2 commit 5f24875Copy full SHA for 5f24875
.github/workflows/release-on-merge.yml
@@ -17,8 +17,8 @@ jobs:
17
echo Computing next tag number
18
LASTPATCH=$(git describe --tags | cut -d- -f1 | cut -d. -f3)
19
PATCH=$(($LASTPATCH+1))
20
- echo "::set-output name=tagname::2.1.${PATCH}"
21
- echo "::set-output name=branch::${GITHUB_REF#refs/heads/}"
+ echo "tagname=2.1.${PATCH}" >> $GITHUB_OUTPUT
+ echo "branch=${GITHUB_REF#refs/heads/}" >> $GITHUB_OUTPUT
22
23
- name: Set up Ruby
24
uses: ruby/setup-ruby@v1
0 commit comments