-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
issue-706: Changed bundle update fastlane to earlier phase
- Loading branch information
Showing
1 changed file
with
4 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
|
@@ -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 }} | ||
|