From ff2d9b5fd442e7ec8fd42857348ef8484be31066 Mon Sep 17 00:00:00 2001 From: Rick van Dijk Date: Tue, 15 Sep 2026 20:00:18 -0700 Subject: [PATCH] Restore dart pub publish in the publish jobs Installing the Flutter SDK was the actual fix for the failed v3.4.3 and firebase-v2.1.4 runs; switching the command to `flutter pub publish` was an unrelated change bundled into it. flutter-action sets FLUTTER_ROOT, which is what lets pub resolve the `flutter` SDK dependency, so `dart pub publish` works and keeps these jobs in line with dart.dev's automated publishing documentation. Co-Authored-By: Claude Opus 5 --- .github/workflows/build-firebase.yaml | 2 +- .github/workflows/build.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-firebase.yaml b/.github/workflows/build-firebase.yaml index 1342919e..863aa212 100644 --- a/.github/workflows/build-firebase.yaml +++ b/.github/workflows/build-firebase.yaml @@ -83,4 +83,4 @@ jobs: cache: true - name: Publish package - run: flutter pub publish -f + run: dart pub publish -v -f diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 969dd9cf..8591e35e 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -259,4 +259,4 @@ jobs: cache: true - name: Publish package - run: flutter pub publish -f + run: dart pub publish -v -f