Sign Bundle with YAML

YAML parameters for Sign Bundle

NameTypeDescription
action RequiredStringThe name of the action.
type RequiredStringThe type of the action. Should be set to ANDROID_SIGN_BUNDLE.
local_path RequiredStringThe path to the generated .apk file.
application_name RequiredStringThe name of the signed APK file.
key_path RequiredStringThe path to the authorization key file.
keystore_password RequiredStringThe keystore password.
output_dirStringThe directory in which the signed APK will be stored.
key_aliasStringThe key alias name.
key_passwordStringThe key password.

YAML example for Sign Bundle

yaml
actions: - 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