Skip to content

Commit

Permalink
Swtich to new GHA environment variable syntax. (#182)
Browse files Browse the repository at this point in the history
  • Loading branch information
Ferroin authored Dec 10, 2020
1 parent df631ad commit 943c700
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ jobs:
steps:
- name: Set release_tag
run: |
echo "::set-env name=RELEASE_TAG::${GITHUB_REF##*/}"
echo "RELEASE_TAG=${GITHUB_REF##*/}" >> $GITHUB_ENV
- name: Create Release
id: create_release
uses: actions/create-release@v1
Expand Down Expand Up @@ -112,10 +112,10 @@ jobs:
name: upload_url
- name: Set upload_url
run: |
echo "::set-env name=UPLOAD_URL::$(cat upload_url/upload_url.txt)"
echo "UPLOAD_URL=$(cat upload_url/upload_url.txt)" >> $GITHUB_ENV
- name: Set release_tag
run: |
echo "::set-env name=RELEASE_TAG::${GITHUB_REF##*/}"
echo "RELEASE_TAG=${GITHUB_REF##*/}" >> $GITHUB_ENV
- name: Download all Artifacts
uses: actions/download-artifact@v2
with:
Expand Down

0 comments on commit 943c700

Please sign in to comment.