From 46ecac947f7b7910dc61e4855e92a65e1c3b8a8e Mon Sep 17 00:00:00 2001 From: Ben C Date: Tue, 1 Aug 2023 09:32:55 -0400 Subject: [PATCH] [META] Split nightly artifacts --- .github/workflows/nightly_build.yml | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/.github/workflows/nightly_build.yml b/.github/workflows/nightly_build.yml index 9d2a7ac5b..64282ec4e 100644 --- a/.github/workflows/nightly_build.yml +++ b/.github/workflows/nightly_build.yml @@ -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