Build Android #18
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
# This workflow uses actions that are not certified by GitHub. | |
# They are provided by a third-party and are governed by | |
# separate terms of service, privacy policy, and support | |
# documentation. | |
name: Build Prod .ipa | |
on: | |
workflow_dispatch: | |
env: | |
FLAVOR: "prod" | |
jobs: | |
build: | |
name: Build .ipa | |
runs-on: macos-11 | |
timeout-minutes: 15 | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: Connect private iap package | |
uses: webfactory/ssh-agent@v0.8.0 | |
with: | |
ssh-private-key: ${{ secrets.M3_LIGHTMETER_IAP_KEY }} | |
- uses: actions/setup-java@v2 | |
with: | |
distribution: "zulu" | |
java-version: "11" | |
- name: Install the Apple certificate and provisioning profile | |
env: | |
APP_STORE_P12: ${{ secrets.APP_STORE_P12 }} | |
APP_STORE_P12_PASSWORD: ${{ secrets.APP_STORE_P12_PASSWORD }} | |
APP_STORE_PROVISION_PROD: ${{ secrets.APP_STORE_PROVISION_PROD }} | |
KEYCHAIN_PASSWORD: ${{ secrets.KEYCHAIN_PASSWORD }} | |
run: | | |
# create variables | |
CERTIFICATE_PATH=$RUNNER_TEMP/build_certificate.p12 | |
PROVISION_PATH=$RUNNER_TEMP/build_provision.mobileprovision | |
KEYCHAIN_PATH=$RUNNER_TEMP/app-signing.keychain-db | |
# import certificate and provisioning profile from secrets | |
echo -n "$APP_STORE_P12" | base64 --decode -o $CERTIFICATE_PATH | |
echo -n "$APP_STORE_PROVISION_PROD" | base64 --decode -o $PROVISION_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 "$APP_STORE_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 $PROVISION_PATH ~/Library/MobileDevice/Provisioning\ Profiles | |
- name: Restore ios/Runner/ExportOptions.plist | |
run: bash .github/scripts/restore_from_base64.sh "${{ secrets.APP_STORE_EXPORT_OPTIONS }}" "ios/Runner/ExportOptions.plist" | |
- name: Restore firebase_options.dart | |
run: bash .github/scripts/restore_from_base64.sh "${{ secrets.FIREBASE_OPTIONS }}" "lib/firebase_options.dart" | |
- name: Install Flutter | |
uses: subosito/flutter-action@v2 | |
with: | |
channel: "stable" | |
flutter-version: "3.10.0" | |
- name: Prepare flutter project | |
run: | | |
flutter --version | |
flutter pub get | |
flutter pub run intl_utils:generate | |
- name: Build .ipa | |
run: | | |
flutter build ipa \ | |
--release \ | |
--flavor $FLAVOR \ | |
--target lib/main_$FLAVOR.dart \ | |
--export-options-plist=ios/Runner/ExportOptions.plist | |
- name: Upload artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: m3_lightmeter_$FLAVOR_ipa | |
path: build/ios/ipa/lightmeter.ipa | |
- name: Clean up keychain and provisioning profile | |
if: ${{ always() }} | |
run: | | |
security delete-keychain $RUNNER_TEMP/app-signing.keychain-db | |
rm ~/Library/MobileDevice/Provisioning\ Profiles/build_provision.mobileprovision |