From f42e03063df0eaad042bfa556f635b7a25bafeb5 Mon Sep 17 00:00:00 2001 From: Chanmi Hwang <86944161+cchanmi@users.noreply.github.com> Date: Sat, 23 Nov 2024 16:38:26 +0900 Subject: [PATCH] update export apiKet --- .github/workflows/smeem-release.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/smeem-release.yml b/.github/workflows/smeem-release.yml index ba2e8a22..b19b3981 100644 --- a/.github/workflows/smeem-release.yml +++ b/.github/workflows/smeem-release.yml @@ -72,7 +72,12 @@ 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" -allowProvisioningUpdates + run: xcodebuild -exportArchive \ + -archivePath "$XC_ARCHIVE_PATH" \ + -exportOptionsPlist .github/ExportOptions.plist \ + -exportPath "$XC_EXPORT_PATH" \ + -apiKey ${{ secrets.APPSTORE_API_PRIVATE_KEY }} + -allowProvisioningUpdates - name: Upload Artifact uses: actions/upload-artifact@v3 with: