From 3aa90e2f49442983dc54f09adc998e4be7348b10 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B9=80=ED=95=9C=EC=97=B4=20Hanyeol=20Kim?= <63261054+OneTen19@users.noreply.github.com> Date: Sun, 1 Mar 2026 22:32:55 +0900 Subject: [PATCH 1/5] =?UTF-8?q?fastlane=20=ED=85=8C=EC=8A=A4=ED=8A=B8=20#2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/README.md b/README.md index 25c50dff..279aa043 100644 --- a/README.md +++ b/README.md @@ -136,4 +136,3 @@ APP(라우팅), Core(공통 로직/네트워크), Shared(디자인/UI), Features
- From b9653112584895c703e842e767a33f813e5092d4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B9=80=ED=95=9C=EC=97=B4=20Hanyeol=20Kim?= <63261054+OneTen19@users.noreply.github.com> Date: Sun, 1 Mar 2026 22:56:08 +0900 Subject: [PATCH 2/5] Update release.yml --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 43cccffb..cfdb7993 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -27,8 +27,8 @@ jobs: - name: Create Release.xcconfig run: | mkdir -p APP/Sources/Resources - echo "${{ secrets.RELEASE_XCCONFIG }}" > APP/Sources/Resources/Release.xcconfig - + printf "%s" "${{ secrets.RELEASE_XCCONFIG }}" > Configs/Release.xcconfig + # 3. SPM 매크로 지문 검증 우회 - name: Disable Macro Validation run: | From 229a386dcd070f1cf6368592d94f768e13b349fc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B9=80=ED=95=9C=EC=97=B4=20Hanyeol=20Kim?= <63261054+OneTen19@users.noreply.github.com> Date: Sun, 1 Mar 2026 22:57:19 +0900 Subject: [PATCH 3/5] Change Release.xcconfig output path in release.yml Update path for Release.xcconfig creation in workflow --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index cfdb7993..d0a60b11 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -27,7 +27,7 @@ jobs: - name: Create Release.xcconfig run: | mkdir -p APP/Sources/Resources - printf "%s" "${{ secrets.RELEASE_XCCONFIG }}" > Configs/Release.xcconfig + printf "%s" "${{ secrets.RELEASE_XCCONFIG }}" > APP/Sources/Resources/Release.xcconfig # 3. SPM 매크로 지문 검증 우회 - name: Disable Macro Validation From b51127fd616588a78431e211d168e7026fb87d53 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B9=80=ED=95=9C=EC=97=B4=20Hanyeol=20Kim?= <63261054+OneTen19@users.noreply.github.com> Date: Sun, 1 Mar 2026 23:22:34 +0900 Subject: [PATCH 4/5] Update Release.xcconfig creation method Change method of creating Release.xcconfig by decoding base64. --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index d0a60b11..c508e382 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -27,8 +27,8 @@ jobs: - name: Create Release.xcconfig run: | mkdir -p APP/Sources/Resources - printf "%s" "${{ secrets.RELEASE_XCCONFIG }}" > APP/Sources/Resources/Release.xcconfig - + echo "${{ secrets.RELEASE_XCCONFIG }}" | base64 --decode > APP/Sources/Resources/Release.xcconfig + # 3. SPM 매크로 지문 검증 우회 - name: Disable Macro Validation run: | From 14eefe4fb04c3fcb9e2e90b75f29a1e446273149 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B9=80=ED=95=9C=EC=97=B4=20Hanyeol=20Kim?= <63261054+OneTen19@users.noreply.github.com> Date: Sun, 1 Mar 2026 23:32:23 +0900 Subject: [PATCH 5/5] Update path for Release.xcconfig creation --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c508e382..a16b1bd5 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -26,8 +26,8 @@ jobs: # 2. 깃허브 Secret에서 Release.xcconfig 파일 생성하기 - name: Create Release.xcconfig run: | - mkdir -p APP/Sources/Resources - echo "${{ secrets.RELEASE_XCCONFIG }}" | base64 --decode > APP/Sources/Resources/Release.xcconfig + mkdir -p Neki-iOS/APP/Sources/Resources + echo "${{ secrets.RELEASE_XCCONFIG }}" | base64 --decode > Neki-iOS/APP/Sources/Resources/Release.xcconfig # 3. SPM 매크로 지문 검증 우회 - name: Disable Macro Validation