Skip to content

Instantly share code, notes, and snippets.

@Osein
Created July 1, 2019 05:17
Show Gist options
  • Save Osein/d26296895b3d80691dfbfc6601a8b594 to your computer and use it in GitHub Desktop.
Save Osein/d26296895b3d80691dfbfc6601a8b594 to your computer and use it in GitHub Desktop.
stage('Send to App Store') {
when {
expression {
return env.shouldBuild != "false" && env.BRANCH_NAME == "master"
}
}
steps {
sh "fastlane deliverToAppStore"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment