From 5fde1d3e6ab4dd224de4679eff42e5612379077b Mon Sep 17 00:00:00 2001 From: Brandy Smith <6577830+brandyscarney@users.noreply.github.com> Date: Mon, 11 Aug 2025 12:22:26 -0400 Subject: [PATCH 1/3] chore(github): update archive to include proxies --- .../workflows/actions/build-core/action.yml | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/.github/workflows/actions/build-core/action.yml b/.github/workflows/actions/build-core/action.yml index 28006742feb..781bca73dfd 100644 --- a/.github/workflows/actions/build-core/action.yml +++ b/.github/workflows/actions/build-core/action.yml @@ -31,4 +31,20 @@ runs: with: name: ionic-core output: core/CoreBuild.zip - paths: core/dist core/components core/css core/hydrate core/loader core/src/components.d.ts core/api.txt + # Include generated proxy files from Stencil output targets so + # framework builds can detect when they need to be updated + paths: | + core/dist + core/components + core/css + core/hydrate + core/loader + core/src/components.d.ts + core/api.txt + packages/angular/src/directives/proxies.ts + packages/angular/src/directives/proxies-list.ts + packages/angular/standalone/src/directives/proxies.ts + packages/vue/src/proxies.ts + packages/react/src/components/proxies.ts + packages/react/src/components/inner-proxies.ts + packages/react/src/components/routing-proxies.ts From 73ac169571fc9ae75e44af65c6ab566b3f615ead Mon Sep 17 00:00:00 2001 From: Brandy Smith <6577830+brandyscarney@users.noreply.github.com> Date: Mon, 11 Aug 2025 12:25:24 -0400 Subject: [PATCH 2/3] style: one line --- .../workflows/actions/build-core/action.yml | 20 +++---------------- 1 file changed, 3 insertions(+), 17 deletions(-) diff --git a/.github/workflows/actions/build-core/action.yml b/.github/workflows/actions/build-core/action.yml index 781bca73dfd..5842eb60526 100644 --- a/.github/workflows/actions/build-core/action.yml +++ b/.github/workflows/actions/build-core/action.yml @@ -31,20 +31,6 @@ runs: with: name: ionic-core output: core/CoreBuild.zip - # Include generated proxy files from Stencil output targets so - # framework builds can detect when they need to be updated - paths: | - core/dist - core/components - core/css - core/hydrate - core/loader - core/src/components.d.ts - core/api.txt - packages/angular/src/directives/proxies.ts - packages/angular/src/directives/proxies-list.ts - packages/angular/standalone/src/directives/proxies.ts - packages/vue/src/proxies.ts - packages/react/src/components/proxies.ts - packages/react/src/components/inner-proxies.ts - packages/react/src/components/routing-proxies.ts + # Include generated proxy files from Stencil output targets so framework builds + # can detect when they need to be updated (fixes CI diff check) + paths: core/dist core/components core/css core/hydrate core/loader core/src/components.d.ts core/api.txt packages/angular/src/directives/proxies.ts packages/angular/src/directives/proxies-list.ts packages/angular/standalone/src/directives/proxies.ts packages/vue/src/proxies.ts packages/react/src/components/proxies.ts packages/react/src/components/inner-proxies.ts packages/react/src/components/routing-proxies.ts From 2c4ea6be7b816f68cd80e23b71318b40a30b2171 Mon Sep 17 00:00:00 2001 From: Brandy Smith <6577830+brandyscarney@users.noreply.github.com> Date: Mon, 11 Aug 2025 12:40:08 -0400 Subject: [PATCH 3/3] style: comment --- .github/workflows/actions/build-core/action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/actions/build-core/action.yml b/.github/workflows/actions/build-core/action.yml index 5842eb60526..88d9b59efec 100644 --- a/.github/workflows/actions/build-core/action.yml +++ b/.github/workflows/actions/build-core/action.yml @@ -31,6 +31,6 @@ runs: with: name: ionic-core output: core/CoreBuild.zip - # Include generated proxy files from Stencil output targets so framework builds - # can detect when they need to be updated (fixes CI diff check) + # Include generated proxy files from Stencil output targets so + # framework builds can detect when they need to be updated paths: core/dist core/components core/css core/hydrate core/loader core/src/components.d.ts core/api.txt packages/angular/src/directives/proxies.ts packages/angular/src/directives/proxies-list.ts packages/angular/standalone/src/directives/proxies.ts packages/vue/src/proxies.ts packages/react/src/components/proxies.ts packages/react/src/components/inner-proxies.ts packages/react/src/components/routing-proxies.ts