Skip to content

Instantly share code, notes, and snippets.

@Osein
Created July 1, 2019 05:09
Show Gist options
  • Select an option

  • Save Osein/6f0e2da94454af8d2b968a8f3243b5f5 to your computer and use it in GitHub Desktop.

Select an option

Save Osein/6f0e2da94454af8d2b968a8f3243b5f5 to your computer and use it in GitHub Desktop.
stage('Build application for beta') {
when {
expression {
return env.shouldBuild != "false"
}
}
steps {
sh "fastlane buildAppWithGym"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment