Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
aidaiym committed Jul 29, 2024
1 parent 816d37d commit 86b8e17
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/app_distribution_ios.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,13 @@ jobs:

- name: Install dependencies
run: flutter pub get
working-directory: my_quran/app

- name: Install CocoaPods dependencies
run: |
cd ios
pod install
working-directory: my_quran/app

- name: List provisioning profiles
run: |
Expand All @@ -39,20 +41,22 @@ jobs:
certificate-password: ${{ secrets.IOS_BUILD_CERTIFICATE_PASSWORD }}
provisioning-profile-base64: ${{ secrets.IOS_MOBILE_PROVISIONING_PROFILE_BASE64 }}
keychain-password: ${{ secrets.IOS_GITHUB_KEYCHAIN_PASSWORD }}
env:
FLUTTER_TARGET: my_quran/app/lib/main.dart

- name: Archive IPA
uses: actions/upload-artifact@v2
with:
name: release-ipa
path: build/ios/ipa/*.ipa
path: my_quran/app/build/ios/ipa/*.ipa

- name: Upload artifact to Firebase App Distribution
uses: wzieba/Firebase-Distribution-Github-Action@v1
with:
appId: ${{ secrets.APP_ID }}
serviceCredentialsFileContent: ${{ secrets.CREDENTIAL_FILE_CONTENT }}
groups: my_quran_testers
file: build/ios/ipa/*.ipa
file: my_quran/app/build/ios/ipa/*.ipa

# steps:
# - uses: actions/checkout@v2
Expand Down

0 comments on commit 86b8e17

Please sign in to comment.