From 1f7902d7f76a51c53a3726006b75fa452fa0127e Mon Sep 17 00:00:00 2001 From: Graeme Arthur Date: Thu, 21 Sep 2023 19:58:55 +0200 Subject: [PATCH] Add one more param that might help --- .github/workflows/alpha.yml | 15 +++++++++------ fastlane/Fastfile | 5 +++-- 2 files changed, 12 insertions(+), 8 deletions(-) diff --git a/.github/workflows/alpha.yml b/.github/workflows/alpha.yml index 3d3ba3c8af..2f0208e837 100644 --- a/.github/workflows/alpha.yml +++ b/.github/workflows/alpha.yml @@ -1,6 +1,8 @@ name: Make TestFlight Alpha Build on: + push: + branches: [ graeme/add-alpha-testflight-group-as-array ] # TODO: Remove this before merging workflow_dispatch: inputs: destination: @@ -39,12 +41,13 @@ jobs: steps: - - name: Assert develop branch - run: | - case "${{ github.ref }}" in - *develop) ;; - *) echo "👎 Not develop branch"; exit 1 ;; - esac + # - name: Assert develop branch + # run: | + # case "${{ github.ref }}" in + # *develop) ;; + # *) echo "👎 Not develop branch"; exit 1 ;; + # esac + # TODO: Uncomment before merging - name: Register SSH keys for access to certificates uses: webfactory/ssh-agent@v0.7.0 diff --git a/fastlane/Fastfile b/fastlane/Fastfile index dcc1b3745d..be75870652 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -135,13 +135,14 @@ lane :release_alpha do |options| upload_to_testflight( api_key: get_api_key, groups: options[:groups], - skip_waiting_for_build_processing: true + skip_waiting_for_build_processing: true, + submit_beta_review: false ) end desc 'Increment build number based on version in App Store Connect' lane :increment_build_number_for_version do |options| - app_identifier = "com.duckduckgo.mobile.ios" + app_identifier = "com.duckduckgo.mobile.ios" if options[:app_identifier] app_identifier = options[:app_identifier] end