No bundles for arm

This commit is contained in:
Pierre Jacquier
2024-06-26 06:04:11 -04:00
parent de7e958e22
commit 83ece965d9

View File

@ -380,7 +380,8 @@ jobs:
- name: Build the app (debug) for aarch64
if: ${{ env.BUILD_RELEASE == 'false' }}
run: "yarn run tauri build --debug --target aarch64-pc-windows-msvc"
# .msi bundles aren't supported by tauri on aarch64
run: "yarn run tauri build --debug --target aarch64-pc-windows-msvc --bundles"
- name: Build the app (release) and sign
if: ${{ env.BUILD_RELEASE == 'true' }}
@ -391,7 +392,9 @@ jobs:
- uses: actions/upload-artifact@v3
with:
path: "src-tauri/target/${{ env.BUILD_RELEASE == 'true' && 'release' || 'debug' }}/bundle/*/*"
path: |
"src-tauri/target/${{ env.BUILD_RELEASE == 'true' && 'release' || 'debug' }}/bundle/*/*"
"src-tauri/target/aarch64-pc-windows-msvc/debug/app.exe"
- name: Run e2e tests
if: ${{ github.event_name != 'release' && github.event_name != 'schedule' }}