Skip to content

This action will help you convert your aab to signed apk file.

License

Notifications You must be signed in to change notification settings

amirisback/bundletool-action-apk

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace
 
 

Repository files navigation

BundleTool Action APK

Codacy Badge tag badge license badge

Thumbnail

This action will help you convert your aab to apks file.

Inputs

aabFile

Required: The relative path in your project where your Android bundle file will be located

bundletoolVersion

Optional: The version of bundletool to use. Defaults to latest

Outputs

Output variables are set both locally and in environment variables.

apkPath

The path to the single release apk file that have been signed with this action.

Example usage

Single APK

The output variable signedReleaseFile can be used in a release action.

steps:
  - name: Convert aab to apk
    id: convert_aab
    uses: amirisback/bundletool-action-apk@v1.0.0
    with:
      aabFile: app/build/outputs/bundle/release/app-release.aab
      bundletoolVersion: '1.9.0'

  - uses: actions/upload-artifact@v3
    with:
      name: release-apk
      path: ${{ steps.convert_aab.outputs.apkPath }}

About

This action will help you convert your aab to signed apk file.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 100.0%