跳到主要内容

Sign Bundle with YAML

List of YAML parameters and examples for the "Sign Bundle" action

YAML parameters for Sign Bundle

名称类型描述
action
必填
String操作名称
type
必填
StringThe type of the action. Should be set to ANDROID_SIGN_BUNDLE.
local_path
必填
StringThe path to the generated .apk file.
application_name
必填
StringThe name of the signed APK file.
key_path
必填
StringThe path to the authorization key file.
keystore_password
必填
StringThe 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

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: ""