Skip to content

Instantly share code, notes, and snippets.

@elenipapanik
Created September 10, 2020 10:18
Show Gist options
  • Save elenipapanik/ef894f1fb1e8f1d602a7287ca728cf2f to your computer and use it in GitHub Desktop.
Save elenipapanik/ef894f1fb1e8f1d602a7287ca728cf2f to your computer and use it in GitHub Desktop.
stage('Upload to TestFlight') {
withEnv(["FASTLANE_USER=fastlane_user_email_address"]) {
withCredentials([
string([
credentialsId: 'fastlane_password_id',
variable: 'FASTLANE_PASSWORD']),
]) {
sh "bundle exec fastlane upload_to_testflight"
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment