diff --git a/.github/workflows/firebase-release.yml b/.github/workflows/firebase-release.yml index efc5aefde..cef6b190d 100644 --- a/.github/workflows/firebase-release.yml +++ b/.github/workflows/firebase-release.yml @@ -1,9 +1,6 @@ name: firebase-release -on: - push: - tags: - - 'firebase-*' +on: pull_request jobs: distribute-android: @@ -69,7 +66,7 @@ jobs: firebase appdistribution:distribute ./android/app/build/outputs/bundle/release/app-release.aab --app ${APP_ID} --groups "${TEST_GROUPS}" distribute-ios: - runs-on: macos-latest + runs-on: macos-14-large timeout-minutes: 120 steps: @@ -126,7 +123,7 @@ jobs: run: | npx cap sync ios sed -i '' "s/NumbersAppDistributionV6/${PROVISIONING_PROFILE}/g" ios/App/ExportOptions.plist - sed -i '' 's/app-store/ad-hoc/g' ios/App/ExportOptions.plist + sed -i '' 's/app-store/release-testing/g' ios/App/ExportOptions.plist xcodebuild archive -workspace ios/App/App.xcworkspace -scheme App -sdk iphoneos -configuration Release -archivePath build/App.xcarchive -showBuildTimingSummary CURRENT_PROJECT_VERSION=${{ steps.current-time.outputs.formattedTime }} PROVISIONING_PROFILE_SPECIFIER=${PROVISIONING_PROFILE} -allowProvisioningUpdates - name: Export IPA from Xcode Archive