Skip to content

Commit 1af0ec8

Browse files
committed
Skip Bundle Install
1 parent 9dc0d9f commit 1af0ec8

File tree

2 files changed

+9
-12
lines changed

2 files changed

+9
-12
lines changed

.github/workflows/deploy_beta.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ jobs:
1717
steps:
1818
- uses: actions/checkout@v3
1919

20-
- name: Install Bundle
21-
run: cd ./${{ matrix.platform }} && bundle install
20+
# - name: Install Bundle
21+
# run: cd ./${{ matrix.platform }} && bundle install
2222

2323
- if: matrix.platform == 'android'
2424
uses: actions/setup-java@v3
@@ -36,9 +36,9 @@ jobs:
3636
flutter config --no-analytics
3737
flutter pub get
3838
39-
- if: matrix.platform == 'ios'
40-
name: Install latest CocoaPods Version
41-
run: sudo gem install cocoapods
39+
# - if: matrix.platform == 'ios'
40+
# name: Install latest CocoaPods Version
41+
# run: sudo gem install cocoapods
4242

4343
- if: matrix.platform == 'ios'
4444
name: Install CocoaPods
@@ -54,7 +54,7 @@ jobs:
5454
name: Build and Deploy With Release Notes to TestFlight
5555
run: |
5656
cd ./ios
57-
bundle exec fastlane ios_beta
57+
fastlane ios_beta
5858
env:
5959
APP_STORE_CONNECT_API_KEY_ID: ${{ secrets.ASC_KEY_ID }}
6060
APP_STORE_CONNECT_ISSUER_ID: ${{ secrets.ASC_ISSUER_ID }}
@@ -66,7 +66,7 @@ jobs:
6666
name: Build and Deploy to TestFlight
6767
run: |
6868
cd ./ios
69-
bundle exec fastlane ios_beta
69+
fastlane ios_beta
7070
env:
7171
APP_STORE_CONNECT_API_KEY_ID: ${{ secrets.ASC_KEY_ID }}
7272
APP_STORE_CONNECT_ISSUER_ID: ${{ secrets.ASC_ISSUER_ID }}
@@ -83,7 +83,7 @@ jobs:
8383
name: Deploy to Google Play Store
8484
run: |
8585
cd ./android
86-
bundle exec fastlane android_beta
86+
fastlane android_beta
8787
env:
8888
GOOGLE_PLAY_SERVICE_ACCOUNT_KEY: ${{ secrets.GOOGLE_PLAY_SERVICE_ACCOUNT_KEY }}
8989
ANDROID_KEYSTORE_FILE: ./upload-keystore

.github/workflows/lint_test_build.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,7 @@ jobs:
1111
runs-on: macos-latest
1212

1313
steps:
14-
- uses: actions/checkout@v3
15-
16-
- name: Install latest CocoaPods Version
17-
run: sudo gem install cocoapods
14+
- uses: actions/checkout@v4
1815

1916
- name: Setup Flutter
2017
uses: subosito/flutter-action@v2

0 commit comments

Comments
 (0)