diff options
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/push-test.yml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.github/workflows/push-test.yml b/.github/workflows/push-test.yml index 025d1f0c..18a027ff 100644 --- a/.github/workflows/push-test.yml +++ b/.github/workflows/push-test.yml @@ -103,12 +103,14 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} TAURI_PRIVATE_KEY: ${{ secrets.TAURI_PRIVATE_KEY }} - name: Upload Linux artifact + if: matrix.platform == 'ubuntu-22.04' uses: actions/upload-artifact@v3 with: name: linux-artifacts path: | src-tauri/target/release/bundle/appimage/* - name: Upload Windows artifact + if: matrix.platform == 'windows-latest' uses: actions/upload-artifact@v3 with: name: windows-artifacts |