diff --git a/.github/workflows/beta.yml b/.github/workflows/beta.yml index 2cdb0dd6..484e9ac4 100644 --- a/.github/workflows/beta.yml +++ b/.github/workflows/beta.yml @@ -103,12 +103,12 @@ jobs: bundler-cache: true - name: Submit to TestFlight (macOS) run: | - export PILOT_VERSION_NUMBER=`ci/version-number.sh mac` + export PILOT_APP_VERSION=`ci/version-number.sh mac` export PILOT_BUILD_NUMBER=`ci/build-number.sh mac` bundle exec fastlane --env mac,beta store_beta - name: Submit to TestFlight (iOS) run: | - export PILOT_VERSION_NUMBER=`ci/version-number.sh ios` + export PILOT_APP_VERSION=`ci/version-number.sh ios` export PILOT_BUILD_NUMBER=`ci/build-number.sh ios` bundle exec fastlane --env ios,beta store_beta submit_for_app_review: @@ -132,9 +132,11 @@ jobs: bundler-cache: true - name: Submit for App Review (macOS) run: | + export DELIVER_APP_VERSION=`ci/version-number.sh mac` export DELIVER_BUILD_NUMBER=`ci/build-number.sh mac` bundle exec fastlane --env mac store_review add_id_info_uses_idfa:false - name: Submit for App Review (iOS) run: | + export DELIVER_APP_VERSION=`ci/version-number.sh ios` export DELIVER_BUILD_NUMBER=`ci/build-number.sh ios` bundle exec fastlane --env ios store_review add_id_info_uses_idfa:false