Skip to content
This repository was archived by the owner on Aug 6, 2025. It is now read-only.
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
6 changes: 2 additions & 4 deletions .github/workflows/docker-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,6 @@ jobs:

build:
name: Docker build and push
# Only run on default branch.
if: >
${{ github.ref == format('refs/heads/{0}', github.event.repository.default_branch) }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand All @@ -32,7 +29,8 @@ jobs:
with:
file: Dockerfile
builder: ${{ steps.buildx.outputs.name }}
push: true
# Only push on default branch.
push: ${{ github.ref == format('refs/heads/{0}', github.event.repository.default_branch) }}
context: .
platforms: linux/amd64,linux/arm64
labels: |
Expand Down