|
17 | 17 | steps: |
18 | 18 | - uses: actions/checkout@v3 |
19 | 19 |
|
20 | | - - name: Install Bundle |
21 | | - run: cd ./${{ matrix.platform }} && bundle install |
| 20 | + # - name: Install Bundle |
| 21 | + # run: cd ./${{ matrix.platform }} && bundle install |
22 | 22 |
|
23 | 23 | - if: matrix.platform == 'android' |
24 | 24 | uses: actions/setup-java@v3 |
|
36 | 36 | flutter config --no-analytics |
37 | 37 | flutter pub get |
38 | 38 |
|
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 |
42 | 42 |
|
43 | 43 | - if: matrix.platform == 'ios' |
44 | 44 | name: Install CocoaPods |
|
54 | 54 | name: Build and Deploy With Release Notes to TestFlight |
55 | 55 | run: | |
56 | 56 | cd ./ios |
57 | | - bundle exec fastlane ios_beta |
| 57 | + fastlane ios_beta |
58 | 58 | env: |
59 | 59 | APP_STORE_CONNECT_API_KEY_ID: ${{ secrets.ASC_KEY_ID }} |
60 | 60 | APP_STORE_CONNECT_ISSUER_ID: ${{ secrets.ASC_ISSUER_ID }} |
|
66 | 66 | name: Build and Deploy to TestFlight |
67 | 67 | run: | |
68 | 68 | cd ./ios |
69 | | - bundle exec fastlane ios_beta |
| 69 | + fastlane ios_beta |
70 | 70 | env: |
71 | 71 | APP_STORE_CONNECT_API_KEY_ID: ${{ secrets.ASC_KEY_ID }} |
72 | 72 | APP_STORE_CONNECT_ISSUER_ID: ${{ secrets.ASC_ISSUER_ID }} |
|
83 | 83 | name: Deploy to Google Play Store |
84 | 84 | run: | |
85 | 85 | cd ./android |
86 | | - bundle exec fastlane android_beta |
| 86 | + fastlane android_beta |
87 | 87 | env: |
88 | 88 | GOOGLE_PLAY_SERVICE_ACCOUNT_KEY: ${{ secrets.GOOGLE_PLAY_SERVICE_ACCOUNT_KEY }} |
89 | 89 | ANDROID_KEYSTORE_FILE: ./upload-keystore |
|
0 commit comments