Skip to content

Commit

Permalink
Add one more param that might help
Browse files Browse the repository at this point in the history
  • Loading branch information
graeme committed Sep 21, 2023
1 parent 3e413bc commit 1f7902d
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 8 deletions.
15 changes: 9 additions & 6 deletions .github/workflows/alpha.yml
Original file line number Diff line number Diff line change
@@ -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:
Expand Down Expand Up @@ -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/[email protected]
Expand Down
5 changes: 3 additions & 2 deletions fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 1f7902d

Please sign in to comment.