Skip to content

Commit 748ff39

Browse files
committed
fix: revert gh actions changes
1 parent 1a2e27e commit 748ff39

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

.github/workflows/sample-distribution.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ on:
1313

1414
jobs:
1515
build_and_deploy_ios_testflight_qa:
16-
name: Build SampleApp iOS and Deploy-${{ github.ref == 'refs/heads/fix/sample-app-crash-on-start' }}
16+
name: Build SampleApp iOS and Deploy-${{ github.ref == 'refs/heads/develop' }}
1717
runs-on: [macos-15]
1818
steps:
1919
- name: Connect Bot
@@ -41,7 +41,7 @@ jobs:
4141
bundle exec pod install
4242
- name: Build and release Testflight QA
4343
working-directory: examples/SampleApp
44-
run: bundle exec fastlane deploy_to_testflight_qa deploy:${{ github.ref == 'refs/heads/fix/sample-app-crash-on-start' }};
44+
run: bundle exec fastlane deploy_to_testflight_qa deploy:${{ github.ref == 'refs/heads/develop' }};
4545
env:
4646
MATCH_PASSWORD: ${{ secrets.MATCH_PASSWORD }}
4747
MATCH_GIT_BASIC_AUTHORIZATION: ${{ secrets.MATCH_GIT_BASIC_AUTHORIZATION }}

examples/SampleApp/fastlane/Fastfile

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,11 @@ lane :deploy_to_testflight_qa do |options|
3333
xcodeproj: xcode_project
3434
)
3535

36-
current_build_number = 799
36+
current_build_number = app_store_build_number(
37+
api_key: appstore_api_key,
38+
live: false,
39+
app_identifier: bundle_id
40+
)
3741

3842
increment_build_number(
3943
build_number: current_build_number + 1,

0 commit comments

Comments
 (0)