Skip to content

Commit

Permalink
Fix build archive command in ios_prod_release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
msasikanth committed Jul 25, 2024
1 parent afeb50b commit fceeaca
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/ios_prod_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,10 +64,15 @@ jobs:
/usr/libexec/Plistbuddy -c "Set CFBundleVersion ${{ steps.tramline.outputs.version_code }}" "iosApp/iosApp/Info.plist"
/usr/libexec/Plistbuddy -c "Set CFBundleShortVersionString ${{ steps.tramline.outputs.version_name }}" "iosApp/iosApp/Info.plist"
- name: Select latest Xcode
run: "sudo xcode-select -s /Applications/Xcode_15.4.app"

- name: Build Archive
run: |
xcodebuild -project ./iosApp/iosApp.xcodeproj \
-target iosApp \
cd iosApp;
xcodebuild
-scheme iosApp \
-archivePath $RUNNER_TEMP/twine.xcarchive \
-sdk iphoneos \
-configuration Release \
Expand All @@ -76,7 +81,7 @@ jobs:
PROVISIONING_PROFILE=${{ secrets.PROVISION_PROFILE_ID }} \
BUGSNAG_API_KEY=${BUGSNAG_API_KEY} \
clean archive
CODE_SIGN_IDENTITY="iPhone Distribution: Sasi Kanth (6XCS8KZXDA)"
CODE_SIGN_IDENTITY="iPhone Distribution: Sasi Kanth (6XCS8KZXDA)";
- name: Export ipa
env:
Expand Down

0 comments on commit fceeaca

Please sign in to comment.