Skip to content

Latest commit

 

History

History
24 lines (20 loc) · 760 Bytes

6-configuring-match-repository.md

File metadata and controls

24 lines (20 loc) · 760 Bytes

6 - Configuring Match repository

Actions

  • Configuring Match repository

Description

Configuring Match repository

Match repository needs to be initialized. You can just run this script for the first time or init by yoursels. Make sure you have required credentials and access.

#!/bin/sh
export APP_BUNDLE_ID_PROD="your bundle id" 
export APP_BUNDLE_ID_UAT="your bundle id"
export APPLE_ID="your id"
export KEYCHAIN_NAME="keychain"
export KEYCHAIN_PASSWORD="keychain"
export APPLE_CERTIFICATES_REPOSITORY_URL="[email protected]/xx/xx.git"

fastlane setup_keychain
bundle exec fastlane match development -a $APP_BUNDLE_ID_PROD, $APP_BUNDLE_ID_UAT
bundle exec fastlane match appstore -a $APP_BUNDLE_ID_PROD, $APP_BUNDLE_ID_UAT