Skip to content

Commit

Permalink
Replace deprecated set-env call
Browse files Browse the repository at this point in the history
  • Loading branch information
programming-wolf committed Dec 28, 2020
1 parent 47744df commit 0ce9c0a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build_releasecandidate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
# do the following two things only for a release!
- name: Set Environment Variables for Release Version
if: startsWith(github.ref, 'refs/tags/')
run: echo ::set-env name=RELEASE_VERSION::${GITHUB_REF:10}
run: echo "RELEASE_VERSION=${GITHUB_REF:10}" >> $GITHUB_ENV
- name: Create New Release Candidate
if: startsWith(github.ref, 'refs/tags/')
id: create-release-candidate
Expand Down

0 comments on commit 0ce9c0a

Please sign in to comment.