summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYuval Adam <_@yuv.al>2019-10-21 20:33:09 +0300
committerYuval Adam <_@yuv.al>2019-10-21 20:33:09 +0300
commit471bd45f25b422511c191b47fe6295c9596ab924 (patch)
treee1e979e7ea96107eb72ef1093923391c0aba9d18
parentb2c6e71c43d33ff67330c9a507ee286595c6fe8a (diff)
-rw-r--r--.github/workflows/release.yml4
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