diff options
author | GeckoEidechse <40122905+GeckoEidechse@users.noreply.github.com> | 2023-04-17 23:28:19 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-17 23:28:19 +0200 |
commit | 2d64c8ba79541652d8fd7caa6d0fa5c6aa56e010 (patch) | |
tree | 426c7189305f85e138b652af844e6d4085547a63 /.github | |
parent | 62693981f8417f56b4ed5cfcea4b851ec2720f5f (diff) | |
download | FlightCore-2d64c8ba79541652d8fd7caa6d0fa5c6aa56e010.tar.gz FlightCore-2d64c8ba79541652d8fd7caa6d0fa5c6aa56e010.zip |
build: Additionally upload binaries separately from CI (#273)
* build: Upload Windows installer separately
addtionally to zip with debug files
* build: Upload Linux AppImage separately
addtionally to zip with debug files
* fix: Actually upload to separate zip
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/push-test.yml | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/.github/workflows/push-test.yml b/.github/workflows/push-test.yml index 18a027ff..d89c868d 100644 --- a/.github/workflows/push-test.yml +++ b/.github/workflows/push-test.yml @@ -109,6 +109,13 @@ jobs: name: linux-artifacts path: | src-tauri/target/release/bundle/appimage/* + - name: Upload Linux AppImage + if: matrix.platform == 'ubuntu-22.04' + uses: actions/upload-artifact@v3 + with: + name: linux-appimage + path: | + src-tauri/target/release/bundle/appimage/*.AppImage - name: Upload Windows artifact if: matrix.platform == 'windows-latest' uses: actions/upload-artifact@v3 @@ -117,3 +124,10 @@ jobs: path: | src-tauri/target/release/bundle/msi/* src-tauri/target/release/app.pdb + - name: Additionally upload Windows installer separately + if: matrix.platform == 'windows-latest' + uses: actions/upload-artifact@v3 + with: + name: windows-msi + path: | + src-tauri/target/release/bundle/msi/*.msi |