We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f4fbac4 commit 6a8746eCopy full SHA for 6a8746e
.github/workflows/publish.yaml
@@ -225,7 +225,12 @@ jobs:
225
sdk: ${{ inputs.sdk }}
226
227
- name: Install firehose
228
- run: dart pub global activate firehose
+ run: dart pub global activate --source git https://github.com/dart-lang/ecosystem --git-path pkgs/firehose/
229
+ if: ${{ !inputs.local_debug }}
230
+
231
+ - name: Install local firehose
232
+ run: dart pub global activate --source path pkgs/firehose/
233
+ if: ${{ inputs.local_debug }}
234
235
- name: Publish packages
236
run: dart pub global run firehose --publish ${{ fromJSON('{"true":"--use-flutter","false":"--no-use-flutter"}')[inputs.use-flutter] }}
0 commit comments