ci(docker): allow manual dispatch for publish job (#795)
This commit is contained in:
parent
76e5e2694f
commit
03aea0d654
1 changed files with 1 additions and 1 deletions
2
.github/workflows/pub-docker-img.yml
vendored
2
.github/workflows/pub-docker-img.yml
vendored
|
|
@ -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:
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue