Skip to content

Commit a1de8f4

Browse files
committed
Additional setup for match in workflow
1 parent d7dddaf commit a1de8f4

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

.github/workflows/main.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,5 +29,7 @@ jobs:
2929
env:
3030
FASTLANE_USER: ${{ secrets.FASTLANE_USER }}
3131
FASTLANE_TEAM_ID: ${{ secrets.FASTLANE_TEAM_ID }}
32+
MATCH_PASSWORD: ${{ secrets.MATCH_PASSWORD }}
33+
MATCH_GIT_BASIC_AUTHORIZATION: ${{ secrets.MATCH_GIT_BASIC_AUTHORIZATION }}
3234
TG_BOT_TOKEN: ${{ secrets.TG_BOT_TOKEN }}
3335
TG_CHAT_ID: ${{ secrets.TG_CHAT_ID }}

Fastlane/Fastfile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,8 @@ platform :ios do
4242
release: { desctiption: "Release channel: beta or stable", default: "beta" }
4343
})
4444

45+
setup_ci if ENV['CI']
46+
4547
release_channel = (options[:release] || "beta").capitalize
4648

4749
update_xcconfig_value(
@@ -71,6 +73,8 @@ platform :ios do
7173
release: { desctiption: "Release channel: beta or stable", default: "beta" }
7274
})
7375

76+
setup_ci if ENV['CI']
77+
7478
release_channel = (options[:release] || "beta").capitalize
7579

7680
update_xcconfig_value(

0 commit comments

Comments
 (0)