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