deploygate¶
Upload a new build to DeployGate
You can retrieve your username and API token on your settings page.
More information about the available options can be found in the DeployGate Push API document.
deploygate | |
---|---|
Supported platforms | ios, android |
Author | @tnj, @tomorrowkey |
2 Examples¶
deploygate(
api_token: "...",
user: "target username or organization name",
ipa: "./ipa_file.ipa",
message: "Build #{lane_context[SharedValues::BUILD_NUMBER]}",
distribution_key: "(Optional) Target Distribution Key"
)
deploygate(
api_token: "...",
user: "target username or organization name",
apk: "./apk_file.apk",
message: "Build #{lane_context[SharedValues::BUILD_NUMBER]}",
distribution_key: "(Optional) Target Distribution Key"
)
Parameters¶
Key | Description | Default |
---|---|---|
api_token |
Deploygate API Token | |
user |
Target username or organization name | |
ipa |
Path to your IPA file. Optional if you use the gym or xcodebuild action | * |
apk |
Path to your APK file | * |
message |
Release Notes | No changelog provided |
distribution_key |
Target Distribution Key | |
release_note |
Release note for distribution page | |
disable_notify |
Disables Push notification emails | false |
* = default value is dependent on the user's system
To show the documentation in your terminal, run
fastlane action deploygate