Skip to content

Commit

Permalink
Fix release attempt 2
Browse files Browse the repository at this point in the history
  • Loading branch information
bewee committed Nov 26, 2020
1 parent 324609a commit b92b767
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ jobs:
release_name: Release ${{ github.ref }}
draft: false
prerelease: false
- run: echo "UPLOAD_URL='${{ steps.create_release.outputs.upload_url }}'" >> $GITHUB_ENV
- run: echo "UPLOAD_URL=${{ steps.create_release.outputs.upload_url }}" >> $GITHUB_ENV
- run: echo "${{ steps.create_release.outputs.upload_url }}" > upload_url
- name: Upload upload_url
uses: actions/upload-artifact@v1
with:
Expand Down Expand Up @@ -75,7 +76,7 @@ jobs:
- name: Set upload_url env var
run: cat upload_url/upload_url
- name: Set env
run: echo "RELEASE_VERSION='$(echo ${GITHUB_REF:11})'" >> $GITHUB_ENV
run: echo "RELEASE_VERSION=$(echo ${GITHUB_REF:11})" >> $GITHUB_ENV
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.version }}
uses: actions/setup-node@v1
Expand Down Expand Up @@ -116,7 +117,7 @@ jobs:
- name: Set upload_url env var
run: cat upload_url/upload_url
- name: Set env
run: echo "RELEASE_VERSION='$(echo ${GITHUB_REF:11})'" >> $GITHUB_ENV
run: echo "RELEASE_VERSION=$(echo ${GITHUB_REF:11})" >> $GITHUB_ENV
- uses: actions/checkout@v2
- name: Download Checksum for linux-arm-v8
uses: dsaltares/fetch-gh-release-asset@master
Expand Down

0 comments on commit b92b767

Please sign in to comment.