Skip to content

Commit

Permalink
exportPath 접근 후 allowProvisioningUpdates 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
cchanmi authored Nov 22, 2024
1 parent caa9975 commit ee5f5ea
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/smeem-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,16 +72,16 @@ jobs:
mkdir artifacts
xcodebuild archive -project Smeem-iOS/Smeem-iOS.xcodeproj -scheme Smeem-Release -destination 'platform=iOS Simulator,name=iPhone 15,OS=17.2' -archivePath "$XC_ARCHIVE_PATH"
- name: Export app
run: xcodebuild -exportArchive -archivePath "$XC_ARCHIVE_PATH" -exportOptionsPlist .github/ExportOptions.plist -exportPath "$XC_EXPORT_PATH"
run: xcodebuild -exportArchive -archivePath "$XC_ARCHIVE_PATH" -exportOptionsPlist .github/ExportOptions.plist -exportPath "$XC_EXPORT_PATH" -allowProvisioningUpdates
- name: Upload Artifact
uses: actions/upload-artifact@v3
with:
name: Artifacts
path: ./artifacts
- name: Upload app to TestFlight
uses: apple-actions/upload-testflight-build@v1
with:
app-path: 'Smeem-iOS.ipa'
app-path: './artifacts/Smeem-iOS.ipa'
issuer-id: ${{ secrets.APPSTORE_ISSUER_ID }}
api-key-id: ${{ secrets.APPSTORE_API_KEY_ID }}
api-private-key: ${{ secrets.APPSTORE_API_PRIVATE_KEY }}
- name: Upload Artifact
uses: actions/upload-artifact@v3
with:
name: Artifacts
path: ./artifacts

0 comments on commit ee5f5ea

Please sign in to comment.