Skip to content

Commit 5277e4a

Browse files
committed
try to fix CI
1 parent 8a8ace7 commit 5277e4a

4 files changed

Lines changed: 9 additions & 3 deletions

File tree

.github/workflows/main.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,8 @@ jobs:
3535
- name: Make release
3636
run: cd app && fastlane mac build_release
3737
env:
38+
FASTLANE_XCODEBUILD_SETTINGS_TIMEOUT: 60
39+
FASTLANE_XCODEBUILD_SETTINGS_RETRIES: 10
3840
MATCH_PASSWORD: ${{ secrets.FASTLANE_MACH_PASSWORD }}
3941
FASTLANE_MACH_REPO_GITHUB_ACCESS_TOKEN: ${{ secrets.FASTLANE_MACH_REPO_GITHUB_ACCESS_TOKEN }}
4042
- name: Cache derived data

.github/workflows/pr.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,8 @@ jobs:
3838
- name: Build app in Release mode
3939
run: cd app && fastlane mac build_release
4040
env:
41+
FASTLANE_XCODEBUILD_SETTINGS_TIMEOUT: 60
42+
FASTLANE_XCODEBUILD_SETTINGS_RETRIES: 10
4143
MATCH_PASSWORD: ${{ secrets.FASTLANE_MACH_PASSWORD }}
4244
FASTLANE_MACH_REPO_GITHUB_ACCESS_TOKEN: ${{ secrets.FASTLANE_MACH_REPO_GITHUB_ACCESS_TOKEN }}
4345

.github/workflows/release.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,8 @@ jobs:
3737
- name: Publish release
3838
run: cd app && fastlane mac distribute_release
3939
env:
40+
FASTLANE_XCODEBUILD_SETTINGS_TIMEOUT: 60
41+
FASTLANE_XCODEBUILD_SETTINGS_RETRIES: 10
4042
FASTLANE_MACH_REPO_GITHUB_ACCESS_TOKEN: ${{ secrets.FASTLANE_MACH_REPO_GITHUB_ACCESS_TOKEN }}
4143
MATCH_PASSWORD: ${{ secrets.FASTLANE_MACH_PASSWORD }}
4244
NOTARY_KEY_ID: ${{ secrets.NOTARY_KEY_ID }}

app/fastlane/Fastfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ platform :mac do
3333
configuration: "Debug",
3434
skip_archive: true,
3535
scheme: "command",
36-
silent: true,
36+
# silent: true,
3737
xcodebuild_formatter: "xcbeautify",
3838
)
3939
end
@@ -73,7 +73,7 @@ platform :mac do
7373
derived_data_path: "build/derived_data",
7474
output_name: "command.app",
7575
scheme: "command",
76-
silent: true,
76+
# silent: true,
7777
skip_archive: true,
7878
xcodebuild_formatter: "xcbeautify",
7979
export_options: {
@@ -130,7 +130,7 @@ platform :mac do
130130
derived_data_path: "#{build_path}/derived_data",
131131
output_name: app_name,
132132
scheme: "command",
133-
silent: true,
133+
# silent: true,
134134
skip_archive: false,
135135
xcodebuild_formatter: "xcbeautify",
136136
export_options: {

0 commit comments

Comments
 (0)