Skip to content

Instantly share code, notes, and snippets.

@Momotoculteur
Created November 1, 2020 17:24
Show Gist options
  • Save Momotoculteur/5a246b55273aa318ce35688d9b208f98 to your computer and use it in GitHub Desktop.
Save Momotoculteur/5a246b55273aa318ce35688d9b208f98 to your computer and use it in GitHub Desktop.
Generate react native build via expo and turtle ci for build ios application in local and offline
# VERSION HTTP
EXPO_IOS_DIST_P12_PASSWORD="MDP_FICHIER_DE_CERTIF" \
turtle build:ios \
--team-id TEAM_APPLE_ID \
--dist-p12-path CHEMIN_VERS_FICHIER_DE_CERTIF/cert.p12 \
--provisioning-profile-path CHEMIN_VERS_FICHIER_DE_PROVISIONING/provisioning.mobileprovision \
--allow-non-https-public-url \
--public-url http://127.0.0.1:8000/ios-index.json
# VERSION HTTPS
EXPO_IOS_DIST_P12_PASSWORD="MDP_FICHIER_DE_CERTIF" \
turtle build:ios \
--team-id TEAM_APPLE_ID \
--dist-p12-path CHEMIN_VERS_FICHIER_DE_CERTIF/cert.p12 \
--provisioning-profile-path CHEMIN_VERS_FICHIER_DE_PROVISIONING/provisioning.mobileprovision \
--public-url http://127.0.0.1:8000/ios-index.json
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment