Skip to content

Commit

Permalink
fix ios
Browse files Browse the repository at this point in the history
  • Loading branch information
aidaiym committed Jul 26, 2024
1 parent bde9884 commit f343f84
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions .github/workflows/app_distribution_ios.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,24 +44,26 @@ jobs:

- name: "Create .xcarchive"
run: |
xcodebuild -workspace ios/Runner.xcworkspace \
cd app/ios
xcodebuild -workspace Runner.xcworkspace \
-scheme Runner \
-sdk iphoneos \
-configuration Release \
-archivePath $PWD/build/ios/archive/Runner.xcarchive \
-archivePath ls app/build/ios/archive/Runner.xcarchive \
clean archive
- name: "Export .ipa file"
run: |
cd app/ios
xcodebuild -exportArchive \
-archivePath $PWD/build/ios/archive/Runner.xcarchive \
-exportPath $PWD/build/ios/ipa \
-exportOptionsPlist ios/Runner/ExportOptions.plist
-archivePath ls app/build/ios/archive/Runner.xcarchive \
-exportPath ls app/build/ios/ipa \
-exportOptionsPlist app/ios/Runner/ExportOptions.plist
- 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/Runner.ipa
file: app/build/ios/ipa/Runner.ipa

0 comments on commit f343f84

Please sign in to comment.