Skip to content

Commit e0be625

Browse files
committed
[fix] 매크로 검증 스킵 및 디버깅 용 빌드 lane 수정
1 parent 01eafb5 commit e0be625

File tree

5 files changed

+10
-7
lines changed

5 files changed

+10
-7
lines changed

.github/workflows/appstore_release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
if: env.MATCH_GIT_PRIVATE_KEY != ''
6060
run: |
6161
mkdir -p "$HOME/.ssh"
62-
echo -e "$MATCH_GIT_PRIVATE_KEY" > "$HOME/.ssh/match_git_key"
62+
echo "$MATCH_GIT_PRIVATE_KEY" > "$HOME/.ssh/match_git_key"
6363
chmod 600 "$HOME/.ssh/match_git_key"
6464
6565
eval "$(ssh-agent -s)"

.github/workflows/build_test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
if: env.MATCH_GIT_PRIVATE_KEY != ''
4646
run: |
4747
mkdir -p "$HOME/.ssh"
48-
echo -e "$MATCH_GIT_PRIVATE_KEY" > "$HOME/.ssh/match_git_key"
48+
echo "$MATCH_GIT_PRIVATE_KEY" > "$HOME/.ssh/match_git_key"
4949
chmod 600 "$HOME/.ssh/match_git_key"
5050
5151
eval "$(ssh-agent -s)"

.github/workflows/develop_hotfix.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
if: env.MATCH_GIT_PRIVATE_KEY != ''
5252
run: |
5353
mkdir -p "$HOME/.ssh"
54-
echo -e "$MATCH_GIT_PRIVATE_KEY" > "$HOME/.ssh/match_git_key"
54+
echo "$MATCH_GIT_PRIVATE_KEY" > "$HOME/.ssh/match_git_key"
5555
chmod 600 "$HOME/.ssh/match_git_key"
5656
5757
eval "$(ssh-agent -s)"

.github/workflows/testflight_release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
if: env.MATCH_GIT_PRIVATE_KEY != ''
5555
run: |
5656
mkdir -p "$HOME/.ssh"
57-
echo -e "$MATCH_GIT_PRIVATE_KEY" > "$HOME/.ssh/match_git_key"
57+
echo "$MATCH_GIT_PRIVATE_KEY" > "$HOME/.ssh/match_git_key"
5858
chmod 600 "$HOME/.ssh/match_git_key"
5959
6060
eval "$(ssh-agent -s)"

fastlane/Fastfile

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -134,6 +134,7 @@ def build_app_for_release(scheme:, output_name:, export_method:)
134134
clean: true,
135135
skip_profile_detection: true,
136136
export_method: export_method,
137+
xcargs: "-skipMacroValidation",
137138
export_options: {
138139
provisioningProfiles: {
139140
APP_IDENTIFIERS[:app] => "match #{export_method == 'app-store' ? 'AppStore' : 'Development'} #{APP_IDENTIFIERS[:app]}",
@@ -164,10 +165,12 @@ platform :ios do
164165
lane :build do
165166
generate_tuist_project
166167

167-
build_app_for_release(
168+
xcodebuild(
169+
workspace: "Pokit.xcworkspace",
168170
scheme: "App",
169-
output_name: "Pokit-dev.ipa",
170-
export_method: "development"
171+
configuration: "Debug",
172+
xcargs: "-skipMacroValidation",
173+
build: true
171174
)
172175
end
173176

0 commit comments

Comments
 (0)