Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/actions/setup-build-env/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
3 changes: 3 additions & 0 deletions fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -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: {
Expand Down Expand Up @@ -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: {
Expand Down Expand Up @@ -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: {
Expand Down
Loading