Fix Android build commands: use --apk and --aab flags

Changed from incorrect --bundle aab to correct --aab flag.
This commit is contained in:
2025-11-01 16:34:15 +01:00
parent 42e6459fbf
commit 8298d807f3
2 changed files with 4 additions and 4 deletions

View File

@ -217,10 +217,10 @@ jobs:
fi
- name: Build Android APK (unsigned if no keystore)
run: pnpm tauri android build
run: pnpm tauri android build --apk
- name: Build Android AAB (unsigned if no keystore)
run: pnpm tauri android build --bundle aab
run: pnpm tauri android build --aab
- name: Upload Android artifacts
uses: actions/upload-artifact@v4

View File

@ -214,10 +214,10 @@ jobs:
echo "ANDROID_KEY_PASSWORD=${{ secrets.ANDROID_KEY_PASSWORD }}" >> $GITHUB_ENV
- name: Build Android APK (signed)
run: pnpm tauri android build
run: pnpm tauri android build --apk
- name: Build Android AAB (signed)
run: pnpm tauri android build --bundle aab
run: pnpm tauri android build --aab
- name: Upload to Release
uses: softprops/action-gh-release@v2