Skip to content

Commit

Permalink
Fix deprecated set-env in GitHub actions.
Browse files Browse the repository at this point in the history
  • Loading branch information
mstenta committed Feb 9, 2021
1 parent d9a0fb8 commit 59c6b05
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 @@ -14,7 +14,7 @@ jobs:
- name: Checkout code
uses: actions/checkout@master
- name: Set RELEASE_VERSION environment variable
run: echo ::set-env name=RELEASE_VERSION::${GITHUB_REF:10}
run: echo "RELEASE_VERSION=${GITHUB_REF:10}" >> $GITHUB_ENV
- uses: actions/setup-node@master
with:
node-version: '13.x'
Expand Down

0 comments on commit 59c6b05

Please sign in to comment.