From 03aea0d6545deef147193520ec8c8b53dcc74763 Mon Sep 17 00:00:00 2001 From: Will Sarg <12886992+willsarg@users.noreply.github.com> Date: Wed, 18 Feb 2026 07:14:15 -0500 Subject: [PATCH] ci(docker): allow manual dispatch for publish job (#795) --- .github/workflows/pub-docker-img.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pub-docker-img.yml b/.github/workflows/pub-docker-img.yml index 998d5a3..c58a47a 100644 --- a/.github/workflows/pub-docker-img.yml +++ b/.github/workflows/pub-docker-img.yml @@ -80,7 +80,7 @@ jobs: publish: name: Build and Push Docker Image - if: github.event_name == 'push' && (github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/v')) && github.repository == 'zeroclaw-labs/zeroclaw' + if: (github.event_name == 'workflow_dispatch' || (github.event_name == 'push' && (github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/v')))) && github.repository == 'zeroclaw-labs/zeroclaw' runs-on: blacksmith-2vcpu-ubuntu-2404 timeout-minutes: 25 permissions: