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
15 changes: 14 additions & 1 deletion .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,14 @@ on:
release:
types: [published]

# Two merges landing seconds apart each start a build, and whichever finishes
# last wins the :dev tag — which can leave it pointing at the older commit.
# Superseding runs on the same ref cancels the stale one so :dev always tracks
# the newest push. Releases are keyed by their own ref and aren't affected.
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
test:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -104,8 +112,13 @@ jobs:
with:
context: .
file: docker/Dockerfile
push: true
provenance: false
sbom: false
# Publish Docker v2 manifests rather than OCI. Unraid's update check
# requests only Docker media types, so an OCI-only manifest returns 404
# and the container reports "not available" instead of an update status.
# provenance: false alone isn't enough — buildx still emits OCI types.
outputs: type=image,oci-mediatypes=false,push=true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
build-args: |
Expand Down
Loading