From e82777301c21e074c4e8d8ac44b6df510e4a9fce Mon Sep 17 00:00:00 2001 From: GeckoEidechse <40122905+GeckoEidechse@users.noreply.github.com> Date: Sat, 25 Feb 2023 21:33:27 +0100 Subject: build: Separate zips for artifacts for Windows and Linux (#187) * build: Separate zips for artifacts for Windows and Linux * fix: Ensure separate folders --- .github/workflows/push-test.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/push-test.yml b/.github/workflows/push-test.yml index aaad5a6d..95e22b13 100644 --- a/.github/workflows/push-test.yml +++ b/.github/workflows/push-test.yml @@ -109,9 +109,15 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} TAURI_PRIVATE_KEY: ${{ secrets.TAURI_PRIVATE_KEY }} - - name: upload build artifact + - name: Upload Linux artifact uses: actions/upload-artifact@v2 with: + name: linux-artifacts path: | src-tauri/target/release/bundle/appimage/* + - name: Upload Windows artifact + uses: actions/upload-artifact@v2 + with: + name: windows-artifacts + path: | src-tauri/target/release/bundle/msi/* -- cgit v1.2.3