Skip to content

Commit

Permalink
Updated release script
Browse files Browse the repository at this point in the history
  • Loading branch information
krichardsson committed Feb 21, 2023
1 parent 91b120d commit 4d2a47d
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 @@ -59,14 +59,14 @@ jobs:
- name: Get Release File Name & Upload URL
id: get_release_info
run: |
value=`cat release_url/release_url.txt`
echo ::set-output name=upload_url::$value
value=`cat release_url.txt`
echo "upload_url=$value" >> $GITHUB_OUTPUT
- name: Get the version
id: get_release_version
env:
GITHUB_REF : ${{ github.ref }}
run: echo ::set-output name=release_version::${GITHUB_REF/refs\/tags\//}
run: echo "release_version=${GITHUB_REF/refs\/tags\//}" >> $GITHUB_OUTPUT

- name: Upload ${{ matrix.platform }} bin
uses: actions/upload-release-asset@v1
Expand Down

0 comments on commit 4d2a47d

Please sign in to comment.