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
8 changes: 5 additions & 3 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,12 @@ jobs:
contents: read

steps:
# Default checkout is enough — when the workflow is triggered by a
# `v*` tag (push or dispatch), the tag itself is fetched as the
# checked-out ref, so `git tag --points-at HEAD` resolves it. Adding
# `fetch-tags: true` makes a workflow_dispatch on the tag fail with
# "Cannot fetch both <sha> and refs/tags/v0.2.0 to refs/tags/v0.2.0".
- uses: actions/checkout@v4
with:
# SPA build reads `git tag --points-at HEAD` for the version badge.
fetch-tags: true

- uses: docker/setup-qemu-action@v3

Expand Down
Loading