From ae27d66060e6a4ffb957aecc05ab143500d89c37 Mon Sep 17 00:00:00 2001 From: Yuval Adam <_@yuv.al> Date: Mon, 21 Oct 2019 20:04:26 +0300 Subject: fix --- .github/workflows/release.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to '.github/workflows') diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 5b2fc26..9201f1e 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -45,13 +45,15 @@ jobs: id: build_zip if: matrix.archive == 'zip' run: | - zip ${{ matrix.output }} target/release/foo.exe + cp target/release/foo.exe . + 7z a ${{ matrix.output }} target/release/foo.exe - name: Build TAR id: build_tar if: matrix.archive == 'tar' run: | - tar czvf ${{ matrix.output }} target/release/foo + cp target/release/foo . + tar czvf ../../${{ matrix.output }} target/release/foo - name: Create Release id: create_release -- cgit v1.3.1