From a1bc37bbf84c1f45e842b32bbd84d20e0f7f3bc0 Mon Sep 17 00:00:00 2001 From: Steven Mendez Date: Fri, 24 Jul 2026 12:25:18 -0600 Subject: [PATCH] =?UTF-8?q?ci:=20fix=20tarball=20workflow=20=E2=80=94=20us?= =?UTF-8?q?e=20real=20build=20scripts,=20parametrize=20notes?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The one-shot release workflow referenced scripts/build-all.mjs, which does not exist (run 30116666722 failed on it); the fork builds with pnpm build + pnpm ui:build. Release notes were also hardcoded to an old fix — now a dispatch input. Co-Authored-By: Claude Fable 5 --- .github/workflows/cut-dojo-tarball.yml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/.github/workflows/cut-dojo-tarball.yml b/.github/workflows/cut-dojo-tarball.yml index 66cf911742e7f..360a6d46a1fa2 100644 --- a/.github/workflows/cut-dojo-tarball.yml +++ b/.github/workflows/cut-dojo-tarball.yml @@ -10,6 +10,10 @@ on: tag: description: 'Release tag (e.g. v2026.5.22-dojo.3)' required: true + notes: + description: 'Release notes (one line)' + required: false + default: 'Dojo fork tarball' jobs: cut: @@ -23,8 +27,8 @@ jobs: install-bun: "false" - name: Build fork + Control UI run: | - node scripts/build-all.mjs - node scripts/ui.js build + pnpm build + pnpm ui:build - name: Pack tarball id: pack run: | @@ -38,6 +42,6 @@ jobs: run: | gh release create "${{ inputs.tag }}" "${{ steps.pack.outputs.tgz }}" \ --title "${{ inputs.tag }}" \ - --notes "AGT-051 — route retry steers through the system channel (nudge leak fix)." + --notes "${{ inputs.notes }}" echo "SHA256 for the plugin Dockerfile ARG:" sha256sum "${{ steps.pack.outputs.tgz }}"