mirror of
https://github.com/vodemn/m3_lightmeter.git
synced 2024-11-21 23:10:40 +00:00
fixed provision cert path
This commit is contained in:
parent
f9a6363025
commit
b28f42c176
2 changed files with 8 additions and 6 deletions
7
.github/workflows/build_apk.yml
vendored
7
.github/workflows/build_apk.yml
vendored
|
@ -38,9 +38,10 @@ jobs:
|
||||||
p12-password: ${{ secrets.APP_STORE_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.APP_STORE_PROVISION_PROD }}" "provision_prod.mobileprovision"
|
PROVISION_CERT_PATH=$RUNNER_TEMP/provision_prod.mobileprovision
|
||||||
mkdir -p ~/Library/MobileDevice/profiles
|
bash .github/scripts/restore_from_base64.sh "${{ secrets.APP_STORE_PROVISION_PROD }}" $PROVISION_CERT_PATH
|
||||||
cp provision_prod.mobileprovision ~/Library/MobileDevice/profiles
|
mkdir -p ~/Library/MobileDevice\ Profiles
|
||||||
|
cp $PROVISION_CERT_PATH ~/Library/MobileDevice\ Profiles
|
||||||
|
|
||||||
- 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"
|
||||||
|
|
7
.github/workflows/build_ipa.yml
vendored
7
.github/workflows/build_ipa.yml
vendored
|
@ -38,9 +38,10 @@ jobs:
|
||||||
p12-password: ${{ secrets.APP_STORE_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.APP_STORE_PROVISION_PROD }}" "provision_prod.mobileprovision"
|
PROVISION_CERT_PATH=$RUNNER_TEMP/provision_prod.mobileprovision
|
||||||
mkdir -p ~/Library/MobileDevice/profiles
|
bash .github/scripts/restore_from_base64.sh "${{ secrets.APP_STORE_PROVISION_PROD }}" $PROVISION_CERT_PATH
|
||||||
cp provision_prod.mobileprovision ~/Library/MobileDevice/profiles
|
mkdir -p ~/Library/MobileDevice\ Profiles
|
||||||
|
cp $PROVISION_CERT_PATH ~/Library/MobileDevice\ Profiles
|
||||||
|
|
||||||
- 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"
|
||||||
|
|
Loading…
Reference in a new issue