Skip to content

Instantly share code, notes, and snippets.

@elenipapanik
Last active September 10, 2020 10:34
Show Gist options
  • Save elenipapanik/ecdb916a4d1ce8cc45d6f98f85110fc1 to your computer and use it in GitHub Desktop.
Save elenipapanik/ecdb916a4d1ce8cc45d6f98f85110fc1 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 bundle_id:$bundle_id"
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment