Sign Bundle with YAML
YAML parameters for Sign Bundle
Name | Type | Description |
---|---|---|
action Required | String | The name of the action. |
type Required | String | The type of the action. Should be set to ANDROID_SIGN_BUNDLE . |
local_path Required | String | The path to the generated .apk file. |
application_name Required | String | The name of the signed APK file. |
key_path Required | String | The path to the authorization key file. |
keystore_password Required | String | The keystore password. |
output_dir | String | The directory in which the signed APK will be stored. |
key_alias | String | The key alias name. |
key_password | String | The key password. |
YAML example for Sign Bundle
yamlactions: - action: "Sign Android bundle" type: "ANDROID_SIGN_BUNDLE" local_path: "app/build/outputs/bundle/release/app-release.aab" output_dir: "/" application_name: "app-release-signed.aab" key_path: "my-release-key.jks" key_password: "${key_password}" keystore_password: "${keystore_password}" key_alias: ""
Last modified on Sep 23, 2024