mirror of
https://github.com/denisidoro/navi
synced 2024-11-22 03:23:05 +00:00
Fix typo with release
This commit is contained in:
parent
3f66614818
commit
68b0054840
1 changed files with 4 additions and 1 deletions
5
.github/workflows/cd.yml
vendored
5
.github/workflows/cd.yml
vendored
|
@ -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
|
Loading…
Reference in a new issue