Created
July 1, 2019 05:16
-
-
Save Osein/7004e107fb4a455158cf9c6ee3307125 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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