Skip to content

Commit

Permalink
fix: ios lanes naming
Browse files Browse the repository at this point in the history
  • Loading branch information
phoebus-84 committed Nov 28, 2024
1 parent 75b63c3 commit 62a38f7
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/beta_version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ jobs:
DEMO_USER: ${{ vars.USER_EMAIL }}
DEMO_PASSWORD: ${{ vars.USER_PASSWORD }}
with:
lane: ios beta
lane: deliver production
- name: Upload release bundle
uses: actions/upload-artifact@v4
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-upload-ios.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
DEMO_USER: ${{ vars.USER_EMAIL }}
DEMO_PASSWORD: ${{ vars.USER_PASSWORD }}
with:
lane: ios beta
lane: testflight
- name: Upload release bundle
uses: actions/upload-artifact@v4
with:
Expand Down
7 changes: 3 additions & 4 deletions fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ end

platform :ios do
desc 'Export ipa and submit to TestFlight'
lane :beta do
lane :production do
keychain_info = { keychain_name: "ios-build-#{Time.now.to_i}.keychain", keychain_password: SecureRandom.uuid }

begin
Expand Down Expand Up @@ -325,12 +325,11 @@ platform :ios do
ipa: "./App.ipa",
skip_waiting_for_build_processing: true,
demo_account_required: true,
distribute_external:true,
changelog: changelog
distribute_external:true
# notify_external_testers: true
)
end
private_lane :deliver do
private_lane :deliver_production do
api_key = app_store_connect_api_key(
key_id: ENV['APPLE_KEY_ID'],
issuer_id: ENV['APPLE_ISSUER_ID'],
Expand Down

0 comments on commit 62a38f7

Please sign in to comment.