Skip to content

Commit

Permalink
[META] Split nightly artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
Bwc9876 committed Aug 1, 2023
1 parent 5f9bd77 commit 46ecac9
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions .github/workflows/nightly_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,12 +74,22 @@ jobs:
run: tauri build --ci -b $([[ ${{ matrix.platform }} = 'windows-latest' ]] && echo 'msi nsis' || echo 'appimage deb')
shell: bash

- name: Upload GUI
# Seperate artifacts for each platform

- name: Upload GUI (Linux)
uses: actions/upload-artifact@v3
if: matrix.platform == 'ubuntu-20.04'
with:
name: GUI-Nightly
name: GUI-Nightly-Linux
path: |
target/release/bundle/**/*.deb
target/release/bundle/**/*.AppImage
- name: Upload GUI (Windows)
uses: actions/upload-artifact@v3
if: matrix.platform == 'windows-latest'
with:
name: GUI-Nightly-Windows
path: |
target/release/bundle/**/*.msi
target/release/bundle/**/*.exe

0 comments on commit 46ecac9

Please sign in to comment.