https://github.com/zaneschepke/bundletool
Bundletool GitHub action for creating .apks file from an Android App Bundle (.aab)
https://github.com/zaneschepke/bundletool
Last synced: 7 months ago
JSON representation
Bundletool GitHub action for creating .apks file from an Android App Bundle (.aab)
- Host: GitHub
- URL: https://github.com/zaneschepke/bundletool
- Owner: zaneschepke
- License: mit
- Created: 2025-03-16T00:00:29.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2025-03-16T00:21:24.000Z (8 months ago)
- Last Synced: 2025-04-06T07:17:06.092Z (7 months ago)
- Size: 5.86 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Bundletool build .apks file action
This action downloads `bundletool` and builds a .apks file from an Android App Bundle (AAB).
## Inputs
- `bundletool-version`: Version of bundletool to download (default: `1.18.1`).
- `java-version`: Version of Java to set up (11, 17) (default: `17`).
- `bundle-file`: Path to the AAB file (required).
- `output-file`: Path to the output .apks file (default: `app-release.apks`).
- `keystore-file`: Path to the keystore .jks file (required).
- `keystore-password`: Keystore password (required).
- `key-alias`: Keystore key alias (required).
- `key-password`: Key password (required).
## Outputs
- `apks-path`: Path to the generated .apks file.
## Example
```yaml
- name: Build APKs with Bundletool
uses: your-username/bundletool-action@v1.0.0
with:
bundletool-version: '1.18.1'
java-version: '17'
bundle-file: 'app/build/outputs/bundle/release/app-release.aab'
output-file: 'app-release.apks'
keystore-file: 'keystore.jks'
keystore-password: ${{ secrets.KEYSTORE_PASSWORD }}
key-alias: ${{ secrets.KEY_ALIAS }}
key-password: ${{ secrets.KEY_PASSWORD }}