diff options
-rw-r--r-- | .github/workflows/push-test.yml | 8 |
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/* |