Skip to content

Instantly share code, notes, and snippets.

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