From 64bab23fe5a3722ecb92e24f9c0fff47d79e45d6 Mon Sep 17 00:00:00 2001 From: Jiyong Jung Date: Thu, 26 Mar 2026 18:34:34 +0900 Subject: [PATCH 1/2] =?UTF-8?q?fix:=20build=5Fapp=EC=97=90=20destination?= =?UTF-8?q?=20=EC=B6=94=EA=B0=80=ED=95=98=EC=97=AC=20=EC=8B=9C=EB=AE=AC?= =?UTF-8?q?=EB=A0=88=EC=9D=B4=ED=84=B0=20=EB=B2=88=EB=93=A4=20=EC=A0=9C?= =?UTF-8?q?=EC=99=B8=20-=20#215?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- fastlane/Fastfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/fastlane/Fastfile b/fastlane/Fastfile index a99660ee..6b1b9824 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -88,6 +88,7 @@ platform :ios do workspace: WORKSPACE_NAME, scheme: MAIN_APP_SCHEME, configuration: "Release", + destination: "generic/platform=iOS", export_method: "app-store", skip_package_ipa: false, export_options: { @@ -180,6 +181,7 @@ platform :ios do workspace: WORKSPACE_NAME, scheme: DEBUG_APP_SCHEME, configuration: "Release", + destination: "generic/platform=iOS", export_method: "app-store", export_options: { provisioningProfiles: { @@ -217,6 +219,7 @@ platform :ios do workspace: WORKSPACE_NAME, scheme: MAIN_APP_SCHEME, configuration: "Release", + destination: "generic/platform=iOS", export_method: "app-store", export_options: { provisioningProfiles: { From 2f6adab01aaa69894430762ed7d6629e12821ede Mon Sep 17 00:00:00 2001 From: Jiyong Jung Date: Thu, 26 Mar 2026 18:36:07 +0900 Subject: [PATCH 2/2] =?UTF-8?q?fix:=20CD=EC=97=90=EC=84=9C=20tuist=20cache?= =?UTF-8?q?=EB=8F=84=20=EC=8A=A4=ED=82=B5=ED=95=98=EB=8F=84=EB=A1=9D=20?= =?UTF-8?q?=EC=88=98=EC=A0=95=20-=20#215?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/actions/setup-build-env/action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/actions/setup-build-env/action.yml b/.github/actions/setup-build-env/action.yml index 2500ea22..397c6700 100644 --- a/.github/actions/setup-build-env/action.yml +++ b/.github/actions/setup-build-env/action.yml @@ -87,11 +87,11 @@ runs: fi - name: 🏗 Warm up external dependencies (with Pulse) - if: (inputs.skip-spm-cache == 'true' || steps.spm-cache.outputs.cache-hit != 'true') && inputs.include-pulse == 'true' + if: inputs.skip-spm-cache != 'true' && steps.spm-cache.outputs.cache-hit != 'true' && inputs.include-pulse == 'true' shell: bash run: tuist cache ComposableArchitecture Kingfisher Pulse KakaoSDKAuth KakaoSDKCommon GoogleSignIn GoogleSignInSwift - name: 🏗 Warm up external dependencies (without Pulse) - if: (inputs.skip-spm-cache == 'true' || steps.spm-cache.outputs.cache-hit != 'true') && inputs.include-pulse != 'true' + if: inputs.skip-spm-cache != 'true' && steps.spm-cache.outputs.cache-hit != 'true' && inputs.include-pulse != 'true' shell: bash run: tuist cache ComposableArchitecture Kingfisher KakaoSDKAuth KakaoSDKCommon GoogleSignIn GoogleSignInSwift