Rename provisioning profile #5
Workflow file for this run
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
name: release-ios-testflight | |
on: | |
push: | |
tags: | |
- "v[0-9]+.[0-9]+.[0-9]+*" | |
workflow_dispatch: | |
inputs: | |
version: | |
description: 'Version - in the form of v1.2.3' | |
required: true | |
type: string | |
# ToDo: adapt names | |
env: | |
# heads-up: this value is used as a pattern in an sed command as a workaround for a trunk issue | |
# if you use special characters, take a look at the 'Make paths relative' step in the 'build-web' job | |
GAME_EXECUTABLE_NAME: bevy_game | |
GAME_OSX_APP_NAME: BevyGame | |
permissions: | |
contents: write | |
jobs: | |
get-version: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Get tag | |
id: tag | |
run: echo "tag=${GITHUB_REF#refs/tags/}" >> "$GITHUB_OUTPUT" | |
outputs: | |
version: ${{ inputs.version || steps.tag.outputs.tag }} | |
build-for-iOS: | |
runs-on: macos-latest | |
timeout-minutes: 30 | |
needs: get-version | |
env: | |
VERSION: ${{needs.get-version.outputs.version}} | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: dtolnay/rust-toolchain@stable | |
- name: Add iOS targets | |
run: rustup target add aarch64-apple-ios x86_64-apple-ios | |
- 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/profile.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 | |
echo "$(ls ~/Library/MobileDevice/Provisioning\ Profiles)" | |
- name: Build app for iOS | |
run: | | |
cd mobile | |
make xcodebuild-archive-release | |
- name: export ipa | |
env: | |
EXPORT_PLIST: ${{ secrets.IOS_EXPORT_PRODUCTION }} | |
run: | | |
EXPORT_PLIST_PATH=$RUNNER_TEMP/ExportOptions.plist | |
echo -n "$EXPORT_PLIST" | base64 --decode --output $EXPORT_PLIST_PATH | |
xcodebuild PROVISIONING_PROFILE=profile -exportArchive -archivePath mobile/Actions.xcarchive -exportOptionsPlist $EXPORT_PLIST_PATH -exportPath $RUNNER_TEMP/export | |
- name: Upload ipa | |
uses: actions/upload-artifact@v3 | |
with: | |
path: $RUNNER_TEMP/export/ | |
- name: decode API key | |
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 to testflight | |
run: | | |
xcrun altool --validate-app -f $RUNNER_TEMP/export/Production.ipa -t ios --apiKey ${{ secrets.APPSTORE_API_KEY_ID }} --apiIssuer ${{ secrets.APPSTORE_ISSUER_ID }} | |
xcrun altool --upload-app -f $RUNNER_TEMP/export/Production.ipa -t ios --apiKey ${{ secrets.APPSTORE_API_KEY_ID }} --apiIssuer ${{ secrets.APPSTORE_ISSUER_ID }} | |
- name: Upload release | |
uses: svenstaro/upload-release-action@v2 | |
with: | |
repo_token: ${{ secrets.GITHUB_TOKEN }} | |
file: mobile/${{ env.GAME_EXECUTABLE_NAME }}.ipa | |
asset_name: ${{ env.GAME_EXECUTABLE_NAME }}_${{ env.VERSION }}_ios.ipa | |
release_name: ${{ env.VERSION }} | |
overwrite: true |