From 4e8ddf70b123ef9dc9df7b2dfd65fc8ca0db0039 Mon Sep 17 00:00:00 2001 From: Patrick Erichsen Date: Mon, 29 Jun 2026 12:31:49 -0700 Subject: [PATCH] ci: bump ClawHub package publish workflow (#97909) --- .github/workflows/plugin-clawhub-release.yml | 2 +- test/scripts/package-acceptance-workflow.test.ts | 7 ++----- 2 files changed, 3 insertions(+), 6 deletions(-) diff --git a/.github/workflows/plugin-clawhub-release.yml b/.github/workflows/plugin-clawhub-release.yml index 3978afacf8a..a24811a93c9 100644 --- a/.github/workflows/plugin-clawhub-release.yml +++ b/.github/workflows/plugin-clawhub-release.yml @@ -387,7 +387,7 @@ jobs: needs: [preview_plugins_clawhub, pack_plugins_clawhub_artifacts, approve_plugins_clawhub_release] if: always() && github.event_name == 'workflow_dispatch' && needs.preview_plugins_clawhub.outputs.has_candidates == 'true' && needs.pack_plugins_clawhub_artifacts.result == 'success' && (inputs.dry_run == true || needs.approve_plugins_clawhub_release.result == 'success') - uses: openclaw/clawhub/.github/workflows/package-publish.yml@9d49df109d4ad3dc8a6ecf05d26b39f46d294721 + uses: openclaw/clawhub/.github/workflows/package-publish.yml@28409ee6ce9d088c9ddf0d6913cde6597f83f362 permissions: actions: read contents: read diff --git a/test/scripts/package-acceptance-workflow.test.ts b/test/scripts/package-acceptance-workflow.test.ts index 620b064fae1..c9ee92e88f4 100644 --- a/test/scripts/package-acceptance-workflow.test.ts +++ b/test/scripts/package-acceptance-workflow.test.ts @@ -1531,10 +1531,7 @@ describe("package artifact reuse", () => { for (const item of cases) { const label = `${item.workflowPath} ${item.jobName}`; - const uploadStep = workflowStep( - workflowJob(item.workflowPath, item.jobName), - item.stepName, - ); + const uploadStep = workflowStep(workflowJob(item.workflowPath, item.jobName), item.stepName); expect(uploadStep.if, label).toContain("always()"); expect(uploadStep.uses, label).toBe(UPLOAD_ARTIFACT_V7); @@ -2137,7 +2134,7 @@ describe("package artifact reuse", () => { "github.event_name == 'workflow_dispatch' && inputs.dry_run != true && inputs.publish_scope == 'selected' && steps.plan.outputs.skipped_published_count != '0'", ); expect(clawHubWorkflow).toContain( - "uses: openclaw/clawhub/.github/workflows/package-publish.yml@9d49df109d4ad3dc8a6ecf05d26b39f46d294721", + "uses: openclaw/clawhub/.github/workflows/package-publish.yml@28409ee6ce9d088c9ddf0d6913cde6597f83f362", ); expect(clawHubWorkflow).toContain("dry_run:"); expect(clawHubWorkflow).toContain("default: false");