-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8343b9d
commit 24a714b
Showing
1 changed file
with
18 additions
and
18 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 |
---|---|---|
|
@@ -123,26 +123,26 @@ jobs: | |
run: echo "##[set-output name=name;]$(echo sweet_$GITHUB_RUN_NUMBER)" | ||
id: app_build | ||
|
||
- name: Building ${{ steps.app_build.outputs.name }} iOS | ||
run: flutter build ios --build-number $GITHUB_RUN_NUMBER --release --no-codesign --config-only | ||
# - name: Building ${{ steps.app_build.outputs.name }} iOS | ||
# run: flutter build ios --build-number $GITHUB_RUN_NUMBER --release --no-codesign --config-only | ||
|
||
- name: Setup Ruby | ||
uses: ruby/[email protected] | ||
with: | ||
bundler-cache: true | ||
# - name: Setup Ruby | ||
# uses: ruby/[email protected] | ||
# with: | ||
# bundler-cache: true | ||
|
||
- name: Build and upload to TestFlight | ||
run: | | ||
bundle install | ||
bundle exec fastlane ios beta | ||
env: | ||
SWEET_MATCH_ACCESS_TOKEN: ${{ secrets.SWEET_MATCH_ACCESS_TOKEN }} | ||
MATCH_PASSWORD: ${{ secrets.MATCH_PASSWORD }} | ||
FASTLANE_USER: ${{ secrets.FASTLANE_APPLE_ID }} | ||
FASTLANE_APPLE_APPLICATION_SPECIFIC_PASSWORD: ${{ secrets.FASTLANE_APPLE_APPLICATION_SPECIFIC_PASSWORD }} | ||
FASTLANE_APPLE_ID: ${{ secrets.FASTLANE_APPLE_ID }} | ||
FASTLANE_ITC_TEAM_ID: ${{ secrets.FASTLANE_ITC_TEAM_ID }} | ||
FASTLANE_TEAM_ID: ${{ secrets.FASTLANE_TEAM_ID }} | ||
# - name: Build and upload to TestFlight | ||
# run: | | ||
# bundle install | ||
# bundle exec fastlane ios beta | ||
# env: | ||
# SWEET_MATCH_ACCESS_TOKEN: ${{ secrets.SWEET_MATCH_ACCESS_TOKEN }} | ||
# MATCH_PASSWORD: ${{ secrets.MATCH_PASSWORD }} | ||
# FASTLANE_USER: ${{ secrets.FASTLANE_APPLE_ID }} | ||
# FASTLANE_APPLE_APPLICATION_SPECIFIC_PASSWORD: ${{ secrets.FASTLANE_APPLE_APPLICATION_SPECIFIC_PASSWORD }} | ||
# FASTLANE_APPLE_ID: ${{ secrets.FASTLANE_APPLE_ID }} | ||
# FASTLANE_ITC_TEAM_ID: ${{ secrets.FASTLANE_ITC_TEAM_ID }} | ||
# FASTLANE_TEAM_ID: ${{ secrets.FASTLANE_TEAM_ID }} | ||
|
||
- name: Building ${{ steps.app_build.outputs.name }} MacOS | ||
run: flutter build macos --build-number $GITHUB_RUN_NUMBER --release | ||
|