Bump version for android #46
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
#https://docs.github.com/en/actions/deployment/deploying-xcode-applications/installing-an-apple-certificate-on-macos-runners-for-xcode-development | |
#https://www.cobeisfresh.com/blog/how-to-implement-a-ci-cd-workflow-for-ios-using-github-actions | |
name: react-native-ios-build | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
install-and-test: | |
runs-on: macos-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Install node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- name: Install npm dependencies and pod install | |
run: | | |
npm install | |
cd ios | |
pod install | |
- name: Install the Apple certificate and provisioning profile | |
env: | |
BUILD_CERTIFICATE_BASE64: ${{ secrets.BUILD_CERTIFICATE_BASE64 }} | |
P12_PASSWORD: ${{ secrets.P12_PASSWORD }} | |
BUILD_PROVISION_PROFILE_BASE64: ${{ secrets.BUILD_PROVISION_PROFILE_BASE64 }} | |
KEYCHAIN_PASSWORD: ${{ secrets.KEYCHAIN_PASSWORD }} | |
run: | | |
# create variables | |
CERTIFICATE_PATH=$RUNNER_TEMP/build_certificate.p12 | |
PP_PATH=$RUNNER_TEMP/build_pp.mobileprovision | |
KEYCHAIN_PATH=$RUNNER_TEMP/app-signing.keychain-db | |
# import certificate and provisioning profile from secrets | |
echo -n "$BUILD_CERTIFICATE_BASE64" | base64 --decode -o $CERTIFICATE_PATH | |
echo -n "$BUILD_PROVISION_PROFILE_BASE64" | base64 --decode -o $PP_PATH | |
# create temporary keychain | |
security create-keychain -p "$KEYCHAIN_PASSWORD" $KEYCHAIN_PATH | |
security set-keychain-settings -lut 21600 $KEYCHAIN_PATH | |
security unlock-keychain -p "$KEYCHAIN_PASSWORD" $KEYCHAIN_PATH | |
# import certificate to keychain | |
security import $CERTIFICATE_PATH -P "$P12_PASSWORD" -A -t cert -f pkcs12 -k $KEYCHAIN_PATH | |
security list-keychain -d user -s $KEYCHAIN_PATH | |
# apply provisioning profile | |
mkdir -p ~/Library/MobileDevice/Provisioning\ Profiles | |
cp $PP_PATH ~/Library/MobileDevice/Provisioning\ Profiles | |
- name: iOS app | |
run: | | |
xcodebuild -scheme "BoltCardPoS" clean archive -archivePath "BoltCardPoS" -configuration "Release Production" -project ${{ github.workspace }}/ios/BoltCardPoS.xcodeproj | |
- name: export ipa | |
env: | |
EXPORT_PLIST: ${{ secrets.IOS_EXPORT_PRODUCTION }} | |
run: | | |
# create export options | |
EXPORT_PLIST_PATH=$RUNNER_TEMP/ExportOptions.plist | |
echo -n "$EXPORT_PLIST" | base64 --decode --output $EXPORT_PLIST_PATH | |
xcodebuild -exportArchive -archivePath $GITHUB_WORKSPACE/BoltCardPoS.xarchive -exportOptionsPlist $EXPORT_PLIST_PATH -exportPath $RUNNER_TEMP/export -project ${{ github.workspace }}/ios/BoltCardPoS.xcodeproj | |
- name: Upload application | |
uses: actions/upload-artifact@v3 | |
with: | |
name: app | |
path: ${{ runner.temp }}/build/BoltCardPoS.ipa | |
# you can also archive the entire directory | |
# path: ${{ runner.temp }}/build | |
retention-days: 3 | |
- name: Decode auth. api key file and save it | |
env: | |
API_KEY_BASE64: ${{ secrets.APPSTORE_API_PRIVATE_KEY }} | |
run: | | |
ls ~/private_keys | |
echo -n "$API_KEY_BASE64" | base64 --decode --output ~/private_keys/AuthKey_${{ secrets.APPSTORE_API_KEY_ID }}.p8 | |
echo "After saving: " | |
ls ~/private_keys | |
- name: "Upload file to test flight using cli" | |
run: | | |
echo "Starting upload. " | |
ls ~/private_keys | |
xcrun altool — validate-app -f $RUNNER_TEMP/export/BoltCardPoS.ipa -t ios — apiKey ${{ secrets.APPSTORE_API_KEY_ID }} — apiIssuer ${{ secrets.APPSTORE_ISSUER_ID }} | |
xcrun altool — upload-app -f $RUNNER_TEMP/export/BoltCardPoS.ipa -t ios — apiKey “${{ secrets.APPSTORE_API_KEY_ID }}” — apiIssuer “${{ secrets.APPSTORE_ISSUER_ID }}” |