Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .github/workflows/build_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ on:
tag_as_latest:
type: boolean
description: "Tag this release as latest"
publish:
type: boolean
description: Publish this build as a new package.

concurrency:
group: push-to-registry-${{ github.head_ref || github.run_id }}
Expand Down Expand Up @@ -82,7 +85,7 @@ jobs:
cache-to: type=local,dest=/tmp/.buildx-cache-new
- name: Push container image
uses: docker/build-push-action@v6
if: github.ref == 'refs/heads/main'
if: github.ref == 'refs/heads/main' || inputs.publish
with:
push: true
context: .docker
Expand Down
Loading