From d5b754d581f590144e3b047be21e425d642dd501 Mon Sep 17 00:00:00 2001 From: Leo Farias Date: Wed, 19 Aug 2026 16:56:54 -0400 Subject: [PATCH] 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. --- .github/workflows/publish.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index edea22b46..e2d25a218 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -13,7 +13,7 @@ on: jobs: publish_mix: if: startsWith(github.ref_name, 'mix-v') - uses: btwld/dart-actions/.github/workflows/publish.yml@main + uses: conceptadev/dart-actions/.github/workflows/publish.yml@main with: packages_folder_path: "packages" packages: | @@ -24,7 +24,7 @@ jobs: publish_mix_annotations: if: startsWith(github.ref_name, 'mix_annotations-v') - uses: btwld/dart-actions/.github/workflows/publish.yml@main + uses: conceptadev/dart-actions/.github/workflows/publish.yml@main with: packages_folder_path: "packages" packages: | @@ -35,7 +35,7 @@ jobs: publish_mix_generator: if: startsWith(github.ref_name, 'mix_generator-v') - uses: btwld/dart-actions/.github/workflows/publish.yml@main + uses: conceptadev/dart-actions/.github/workflows/publish.yml@main with: packages_folder_path: "packages" packages: | @@ -46,7 +46,7 @@ jobs: publish_mix_lint: if: startsWith(github.ref_name, 'mix_lint-v') - uses: btwld/dart-actions/.github/workflows/publish.yml@main + uses: conceptadev/dart-actions/.github/workflows/publish.yml@main with: packages_folder_path: "packages" packages: | @@ -57,7 +57,7 @@ jobs: publish_mix_winds: if: startsWith(github.ref_name, 'mix_winds-v') - uses: btwld/dart-actions/.github/workflows/publish.yml@main + uses: conceptadev/dart-actions/.github/workflows/publish.yml@main with: packages_folder_path: "packages" packages: | @@ -68,7 +68,7 @@ jobs: publish_mix_chart: if: startsWith(github.ref_name, 'mix_chart-v') - uses: btwld/dart-actions/.github/workflows/publish.yml@main + uses: conceptadev/dart-actions/.github/workflows/publish.yml@main with: packages_folder_path: "packages" packages: |