From 8d0d89b4b06f6a4c6cf0f4b4c5f8f244226a35c9 Mon Sep 17 00:00:00 2001 From: Mateusz Faderewski Date: Sat, 18 Feb 2023 19:32:44 +0100 Subject: [PATCH] test --- .github/workflows/build.yml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 9cc08f8..9c6776a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -52,14 +52,15 @@ jobs: matrix: os: [windows-latest, ubuntu-latest, macos-latest] include: - - zip: zip -j -r ${{ matrix.artifact }}.zip dist/* - os: windows-latest artifact: Apps-Windows - zip: tar.exe -a -c -C dist -f ${{ matrix.artifact }}.zip * + zip: tar.exe -a -c -f - os: ubuntu-latest artifact: Apps-Linux + zip: zip -r - os: macos-latest artifact: Apps-macOS + zip: zip -r runs-on: ${{ matrix.os }} @@ -91,17 +92,17 @@ jobs: path: sw/pc/dist/* - name: Zip executables - run: ${{ matrix.zip }} - working-directory: sw/pc + run: ${{ matrix.zip }} ${{ matrix.artifact }}.zip * + working-directory: sw/pc/dist - name: TEST uses: actions/upload-artifact@v3 with: name: ${{ matrix.artifact }}-test - path: sw/pc/${{ matrix.artifact }}.zip + path: sw/pc/dist/${{ matrix.artifact }}.zip - name: Upload release assets uses: softprops/action-gh-release@v0.1.15 if: github.event_name == 'release' && github.event.action == 'created' with: - files: sw/pc/${{ matrix.artifact }}.zip + files: sw/pc/dist/${{ matrix.artifact }}.zip