diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 90ef5ac..ad07bba 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -17,9 +17,9 @@ jobs: with: action: none xcode: ~16.0 - authentication-key-base64: ${{ secrets.APP_STORE_CONNECT_KEY_BASE64 }} - authentication-key-id: ${{ secrets.APP_STORE_CONNECT_KEY_ID }} - authentication-key-issuer-id: ${{ secrets.APP_STORE_CONNECT_KEY_ISSUER_ID }} + code-sign-certificate: ${{ secrets.BUILD_CERTIFICATE_BASE64 }} + code-sign-certificate-passphrase: ${{ secrets.P12_PASSWORD }} + mobile-provisioning-profiles-base64: ${{ secrets.BUILD_PROVISION_PROFILE_BASE64 }} - name: Build App run: | xcodebuild -disableAutomaticPackageResolution -scheme FurAffinity -destination 'platform=iOS Simulator,name=iPhone 15' -configuration Release build diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index faf6138..04d88ee 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -24,9 +24,9 @@ jobs: with: action: none xcode: ~16.0 - authentication-key-base64: ${{ secrets.APP_STORE_CONNECT_KEY_BASE64 }} - authentication-key-id: ${{ secrets.APP_STORE_CONNECT_KEY_ID }} - authentication-key-issuer-id: ${{ secrets.APP_STORE_CONNECT_KEY_ISSUER_ID }} + code-sign-certificate: ${{ secrets.BUILD_CERTIFICATE_BASE64 }} + code-sign-certificate-passphrase: ${{ secrets.P12_PASSWORD }} + mobile-provisioning-profiles-base64: ${{ secrets.BUILD_PROVISION_PROFILE_BASE64 }} - name: Archive App run: | git_hash=$(git rev-parse --short "$GITHUB_SHA")