Skip to content

Instantly share code, notes, and snippets.

@sebalopez
Created September 16, 2020 13:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sebalopez/9dd6da87127f1f789b81a583df250485 to your computer and use it in GitHub Desktop.
Save sebalopez/9dd6da87127f1f789b81a583df250485 to your computer and use it in GitHub Desktop.
iOS Fastfile env vars
default_platform(:ios)
app_name = 'ReactNativeBase' # The base name of your app (extended with -Target)
xcodeproj = app_name+'.xcodeproj' # The xcodeproj name eg: ReactNativeBase.xcodeproj
workspace = app_name+'.xcworkspace' # The xworkspace name here eg: ReactNativeBase.xcworkspace
team_id = ENV["APPLE_TEAM_ID"] # The organization's team id in the Apple Developer portal
cert = ENV["APPLE_CERT"] # Local path to distribution certificate file to be used for signing the build
key = ENV["APPLE_KEY"] # Private key (.p12 file) used for encrypting certificate
key_pwd = ENV["APPLE_KEY_PASSWORD"] # Password to private key file
slack_url = ENV["SLACK_URL"] # Slack webhook url and channel name for sending notifications upon completion
slack_channel = ENV["SLACK_CHANNEL"] #
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment