aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeckoEidechse <40122905+GeckoEidechse@users.noreply.github.com>2023-02-25 21:33:27 +0100
committerGitHub <noreply@github.com>2023-02-25 20:33:27 +0000
commite82777301c21e074c4e8d8ac44b6df510e4a9fce (patch)
tree9506c634a28cdb7cafdd8ef0090fc0ab324bb29e
parentaef1635732d2a5a71c22b592984f79844708bef2 (diff)
downloadFlightCore-e82777301c21e074c4e8d8ac44b6df510e4a9fce.tar.gz
FlightCore-e82777301c21e074c4e8d8ac44b6df510e4a9fce.zip
build: Separate zips for artifacts for Windows and Linux (#187)
* build: Separate zips for artifacts for Windows and Linux * fix: Ensure separate folders
-rw-r--r--.github/workflows/push-test.yml8
1 files changed, 7 insertions, 1 deletions
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/*