Skip to content

Commit 4c5aef3

Browse files
authored
Use new way of setting env variables
1 parent dbc38cb commit 4c5aef3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/create-release-asset-on-git-tag.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ jobs:
2727
# https://stackoverflow.com/a/59284102
2828
- name: Get Release Version
2929
run: |
30-
echo "name=RELEASE_TAG=${GITHUB_REF##*/}" >> $GITHUB_ENV
31-
echo "name=RELEASE_VERSION=${GITHUB_REF##*/v}" >> $GITHUB_ENV
30+
echo "RELEASE_TAG=${GITHUB_REF##*/}" >> $GITHUB_ENV
31+
echo "RELEASE_VERSION=${GITHUB_REF##*/v}" >> $GITHUB_ENV
3232
- name: Print Release Version
3333
run: |
3434
echo "GITHUB_REF=$GITHUB_REF"

0 commit comments

Comments
 (0)