Created
August 26, 2016 13:05
-
-
Save PaulTaykalo/9d588bb557093a8394224959e286da7f to your computer and use it in GitHub Desktop.
Fastlane's Appfile for multiple users support
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
# In big teams instead of specifying one email to rule them all as apple_id | |
# You can get this information from environment variable | |
# By doing this it will allow different developers to specify their own apple ids | |
# And if this env variable is not required - then it will be asked on any command that requires apple_id | |
apple_id ENV["MY_APP_NAME_APPLE_ID"] # Your Apple email address | |
### ~/.bashrc of some user | |
export MY_APP_NAME_APPLE_ID="[email protected]" | |
### ~/.bashrc of some another user | |
export MY_APP_NAME_APPLE_ID="[email protected]" | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks for this