Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 4 additions & 11 deletions .github/workflows/deploy_beta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,7 @@ jobs:
fail-fast: false

steps:
- uses: actions/checkout@v3

- name: Install Bundle
run: cd ./${{ matrix.platform }} && bundle install
- uses: actions/checkout@v4

- if: matrix.platform == 'android'
uses: actions/setup-java@v3
Expand All @@ -36,10 +33,6 @@ jobs:
flutter config --no-analytics
flutter pub get

- if: matrix.platform == 'ios'
name: Install latest CocoaPods Version
run: sudo gem install cocoapods

- if: matrix.platform == 'ios'
name: Install CocoaPods
run: cd ./ios && pod install
Expand All @@ -54,7 +47,7 @@ jobs:
name: Build and Deploy With Release Notes to TestFlight
run: |
cd ./ios
bundle exec fastlane ios_beta
fastlane ios_beta
env:
APP_STORE_CONNECT_API_KEY_ID: ${{ secrets.ASC_KEY_ID }}
APP_STORE_CONNECT_ISSUER_ID: ${{ secrets.ASC_ISSUER_ID }}
Expand All @@ -66,7 +59,7 @@ jobs:
name: Build and Deploy to TestFlight
run: |
cd ./ios
bundle exec fastlane ios_beta
fastlane ios_beta
env:
APP_STORE_CONNECT_API_KEY_ID: ${{ secrets.ASC_KEY_ID }}
APP_STORE_CONNECT_ISSUER_ID: ${{ secrets.ASC_ISSUER_ID }}
Expand All @@ -83,7 +76,7 @@ jobs:
name: Deploy to Google Play Store
run: |
cd ./android
bundle exec fastlane android_beta
fastlane android_beta
env:
GOOGLE_PLAY_SERVICE_ACCOUNT_KEY: ${{ secrets.GOOGLE_PLAY_SERVICE_ACCOUNT_KEY }}
ANDROID_KEYSTORE_FILE: ./upload-keystore
Expand Down
5 changes: 1 addition & 4 deletions .github/workflows/lint_test_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,7 @@ jobs:
runs-on: macos-latest

steps:
- uses: actions/checkout@v3

- name: Install latest CocoaPods Version
run: sudo gem install cocoapods
- uses: actions/checkout@v4

- name: Setup Flutter
uses: subosito/flutter-action@v2
Expand Down