Skip to content

Commit 5461fb9

Browse files
committed
Yaml list format
It looked like it was specified as a string, so I assumed we should use the comma separated format as if it were passed as a CLI arg, but that doesn't seem to have any effect.
1 parent 341df34 commit 5461fb9

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

.github/workflows/publish.yaml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,10 @@ jobs:
1313
if: ${{ github.repository_owner == 'dart-lang' }}
1414
uses: dart-lang/ecosystem/.github/workflows/publish.yaml@main
1515
with:
16-
ignore-packages: pkgs/cupertino_http/,pkgs/cronet_http/,pkgs/ok_http/
16+
ignore-packages:
17+
- pkgs/cupertino_http/
18+
- pkgs/cronet_http/
19+
- pkgs/ok_http/
1720
permissions:
1821
id-token: write # Required for authentication using OIDC
1922
pull-requests: write # Required for writing the pull request note

.github/workflows/publish_flutter.yaml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,10 @@ jobs:
1414
uses: dart-lang/ecosystem/.github/workflows/publish.yaml@main
1515
with:
1616
use-flutter: true
17-
ignore-packages: pkgs/http/,pkgs/http_profile/,pkgs/web_socket/,
17+
ignore-packages:
18+
- pkgs/http/
19+
- pkgs/http_profile/
20+
- pkgs/web_socket/
1821
permissions:
1922
id-token: write # Required for authentication using OIDC
2023
pull-requests: write # Required for writing the pull request note

0 commit comments

Comments
 (0)