Skip to content

Commit

Permalink
Fix typo with release
Browse files Browse the repository at this point in the history
  • Loading branch information
denisidoro committed Mar 16, 2020
1 parent 3f66614 commit 68b0054
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,13 @@ jobs:
- uses: actions/checkout@v1
- name: Build
run: scripts/action release ${{ matrix.target }}
- name: Get the version
id: get_version
run: echo ::set-output name=VERSION::${GITHUB_REF/refs\/tags\//}
- name: Upload binaries to release
uses: svenstaro/upload-release-action@v1-release
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: target/tar/navi.tar.gz
tag: ${{ github.ref }}
asset_name: navi-${{ github.ref }}-${{ matrix.target }}.tar.gz
asset_name: navi-${{ steps.get_version.outputs.VERSION }}-${{ matrix.target }}.tar.gz

0 comments on commit 68b0054

Please # to comment.