From 8bea3b36cc8fc0a463cbda2745f42d961a3c6171 Mon Sep 17 00:00:00 2001 From: Jonas Bark Date: Fri, 6 Feb 2026 14:23:45 +0100 Subject: [PATCH] fix patch yaml --- .github/workflows/patch.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/workflows/patch.yml b/.github/workflows/patch.yml index 54b6d90..71a28c9 100644 --- a/.github/workflows/patch.yml +++ b/.github/workflows/patch.yml @@ -132,6 +132,15 @@ jobs: submodules: recursive token: ${{ secrets.PAT_TOKEN }} + - name: rename pubspec_overrides_ci.yaml to pubspec_overrides.yaml + shell: pwsh + run: | + if (Test-Path pubspec_overrides_ci.yaml) { + Rename-Item -Path pubspec_overrides_ci.yaml -NewName pubspec_overrides.yaml + } else { + Write-Output "No pubspec_overrides_ci.yaml found, skipping rename." + } + - name: 🐦 Setup Shorebird uses: shorebirdtech/setup-shorebird@v1 with: