ci(docker): allow manual dispatch for publish job (#795)

This commit is contained in:
Will Sarg 2026-02-18 07:14:15 -05:00 committed by GitHub
parent 76e5e2694f
commit 03aea0d654
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -80,7 +80,7 @@ jobs:
publish: publish:
name: Build and Push Docker Image 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 runs-on: blacksmith-2vcpu-ubuntu-2404
timeout-minutes: 25 timeout-minutes: 25
permissions: permissions: