added. certs to .ipa workflow

This commit is contained in:
Vadim 2024-02-05 18:43:02 +01:00
parent 78e34cfa48
commit 2afb1fd467

View file

@ -8,6 +8,9 @@ name: Build Prod .ipa
on: on:
workflow_dispatch: workflow_dispatch:
env:
FLAVOR: "prod"
jobs: jobs:
build: build:
name: Build .ipa name: Build .ipa
@ -31,18 +34,13 @@ jobs:
- name: Install Apple Certificate - name: Install Apple Certificate
uses: apple-actions/import-codesign-certs@v1 uses: apple-actions/import-codesign-certs@v1
with: with:
p12-file-base64: ${{ secrets.CERT_P12 }} p12-file-base64: ${{ secrets.APP_STORE_P12 }}
p12-password: ${{ secrets.CERT_P12_PASSWORD }} p12-password: ${{ secrets.APP_STORE_P12_PASSWORD }}
- name: Install the provisioning profile - name: Install the provisioning profile
run: | run: |
bash .github/scripts/restore_from_base64.sh "${{ secrets.PROVISION_PROD }}" "provision_prod.mobileprovision" bash .github/scripts/restore_from_base64.sh "${{ secrets.APP_STORE_PROVISION_PROD }}" "provision_prod.mobileprovision"
mkdir -p ~/Library/MobileDevice/profiles mkdir -p ~/Library/MobileDevice/profiles
cp app_store_api_key.p8 ~/Library/MobileDevice/profiles cp provision_prod.mobileprovision ~/Library/MobileDevice/profiles
- name: Restore AppStore Certificate
run: |
bash .github/scripts/restore_from_base64.sh "${{ secrets.CERT_P8 }}" "app_store_api_key.p8"
mkdir -p ~/Library/MobileDevice/certificates
cp app_store_api_key.p8 ~/Library/MobileDevice/certificates
- name: Restore firebase_options.dart - name: Restore firebase_options.dart
run: bash .github/scripts/restore_from_base64.sh "${{ secrets.FIREBASE_OPTIONS }}" "lib/firebase_options.dart" run: bash .github/scripts/restore_from_base64.sh "${{ secrets.FIREBASE_OPTIONS }}" "lib/firebase_options.dart"
@ -51,7 +49,7 @@ jobs:
uses: subosito/flutter-action@v2 uses: subosito/flutter-action@v2
with: with:
channel: "stable" channel: "stable"
flutter-version: '3.10.0' flutter-version: "3.10.0"
- name: Prepare flutter project - name: Prepare flutter project
run: | run: |
@ -60,12 +58,10 @@ jobs:
flutter pub run intl_utils:generate flutter pub run intl_utils:generate
- name: Build .ipa - name: Build .ipa
env:
FLAVOR: ${{ github.event.inputs.flavor }}
run: flutter build ipa --release --flavor $FLAVOR -t lib/main_$FLAVOR.dart run: flutter build ipa --release --flavor $FLAVOR -t lib/main_$FLAVOR.dart
- name: Upload artifact - name: Upload artifact
uses: actions/upload-artifact@v3 uses: actions/upload-artifact@v3
with: with:
name: m3_lightmeter_${{ github.event.inputs.flavor }}_ipa name: m3_lightmeter_$FLAVOR_ipa
path: build/ios/ipa/lightmeter.ipa path: build/ios/ipa/lightmeter.ipa