Skip to content

Commit

Permalink
issue-706: Changed bundle update fastlane to earlier phase
Browse files Browse the repository at this point in the history
  • Loading branch information
geosaaga committed Dec 18, 2024
1 parent 3b3e2ef commit 9bb8478
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,9 @@ jobs:

# Gem install bundler + bundle install
- name: Install Ruby Dependencies
run: gem install bundler && bundle install
run: |
gem install bundler && bundle install
bundle update fastlane
working-directory: ios

# Install Pods
Expand All @@ -262,12 +264,11 @@ jobs:
run: |
git config user.email "[email protected]"
git config user.name "actions"
bundle update fastlane
bundle exec fastlane ios increment_version should_commit:true should_push:true
working-directory: ios

- name: Build & upload iOS binary
run: bundle exec fastlane ios build_upload_testflight
run: |bundle exec fastlane ios build_upload_testflight
env:
ASC_KEY_ID: ${{ secrets.ASC_KEY_ID }}
ASC_ISSUER_ID: ${{ secrets.ASC_ISSUER_ID }}
Expand Down

0 comments on commit 9bb8478

Please sign in to comment.