From 9c9b4166c7fbb42a126bf9ff07fa2051f74a9a6b Mon Sep 17 00:00:00 2001 From: Moritz Date: Mon, 13 Oct 2025 12:18:42 +0200 Subject: [PATCH] Use newest verion of firehose in publish --- .github/workflows/publish.yaml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index 1e3e0428..26d57300 100644 --- a/.github/workflows/publish.yaml +++ b/.github/workflows/publish.yaml @@ -225,7 +225,12 @@ jobs: sdk: ${{ inputs.sdk }} - name: Install firehose - run: dart pub global activate firehose + run: dart pub global activate --source git https://github.com/dart-lang/ecosystem --git-path pkgs/firehose/ + if: ${{ !inputs.local_debug }} + + - name: Install local firehose + run: dart pub global activate --source path pkgs/firehose/ + if: ${{ inputs.local_debug }} - name: Publish packages run: dart pub global run firehose --publish ${{ fromJSON('{"true":"--use-flutter","false":"--no-use-flutter"}')[inputs.use-flutter] }}