diff options
Diffstat (limited to '.github/workflows/release.yml')
| -rw-r--r-- | .github/workflows/release.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 5d8fe44..4b999e9 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -46,14 +46,14 @@ jobs: if: matrix.archive == 'zip' run: | cp target/release/foo.exe . - 7z a ${{ matrix.output }} target/release/foo.exe + 7z a ${{ matrix.output }} foo.exe - name: Build TAR id: build_tar if: matrix.archive == 'tar' run: | cp target/release/foo . - tar czvf ${{ matrix.output }} target/release/foo + tar czvf ${{ matrix.output }} foo - name: Upload uses: actions/upload-artifact@master |
