Skip to content

Commit d5b754d

Browse files
committed
ci: point publish at the reusable workflow's canonical repo
Publishing has been silently broken since the org move. GitHub's REST API follows repository redirects, so btwld/dart-actions still resolves when you query it by hand, but the Actions reusable-workflow resolver does not: Invalid workflow file: .github/workflows/publish.yml#L16 error parsing called workflow ".github/workflows/publish.yml" -> "btwld/dart-actions/.github/workflows/publish.yml@main" : workflow was not found The whole workflow is rejected before any job is created, which is why a tag push produced a run with zero jobs, no logs, and no annotation surfaced through the API. Only the web UI showed the parse error. Point all six callers at conceptadev/dart-actions, the current canonical name. The btwld/* links in README.md and AGENTS.md are left alone: those are web URLs and GitHub redirects them correctly.
1 parent 8573c0c commit d5b754d

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/publish.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ on:
1313
jobs:
1414
publish_mix:
1515
if: startsWith(github.ref_name, 'mix-v')
16-
uses: btwld/dart-actions/.github/workflows/publish.yml@main
16+
uses: conceptadev/dart-actions/.github/workflows/publish.yml@main
1717
with:
1818
packages_folder_path: "packages"
1919
packages: |
@@ -24,7 +24,7 @@ jobs:
2424

2525
publish_mix_annotations:
2626
if: startsWith(github.ref_name, 'mix_annotations-v')
27-
uses: btwld/dart-actions/.github/workflows/publish.yml@main
27+
uses: conceptadev/dart-actions/.github/workflows/publish.yml@main
2828
with:
2929
packages_folder_path: "packages"
3030
packages: |
@@ -35,7 +35,7 @@ jobs:
3535

3636
publish_mix_generator:
3737
if: startsWith(github.ref_name, 'mix_generator-v')
38-
uses: btwld/dart-actions/.github/workflows/publish.yml@main
38+
uses: conceptadev/dart-actions/.github/workflows/publish.yml@main
3939
with:
4040
packages_folder_path: "packages"
4141
packages: |
@@ -46,7 +46,7 @@ jobs:
4646

4747
publish_mix_lint:
4848
if: startsWith(github.ref_name, 'mix_lint-v')
49-
uses: btwld/dart-actions/.github/workflows/publish.yml@main
49+
uses: conceptadev/dart-actions/.github/workflows/publish.yml@main
5050
with:
5151
packages_folder_path: "packages"
5252
packages: |
@@ -57,7 +57,7 @@ jobs:
5757

5858
publish_mix_winds:
5959
if: startsWith(github.ref_name, 'mix_winds-v')
60-
uses: btwld/dart-actions/.github/workflows/publish.yml@main
60+
uses: conceptadev/dart-actions/.github/workflows/publish.yml@main
6161
with:
6262
packages_folder_path: "packages"
6363
packages: |
@@ -68,7 +68,7 @@ jobs:
6868

6969
publish_mix_chart:
7070
if: startsWith(github.ref_name, 'mix_chart-v')
71-
uses: btwld/dart-actions/.github/workflows/publish.yml@main
71+
uses: conceptadev/dart-actions/.github/workflows/publish.yml@main
7272
with:
7373
packages_folder_path: "packages"
7474
packages: |

0 commit comments

Comments
 (0)