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
10 changes: 10 additions & 0 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,16 @@ jobs:
- uses: actions/checkout@v4
with:
ref: ${{ steps.ref.outputs.ref }}
fetch-depth: 0

- name: Overlay Dockerfile from main (backfill runs)
# Tags published before Docker support was added don't have a Dockerfile.
# On workflow_dispatch backfills, copy the current Dockerfile + .dockerignore
# from main on top of the tag's source tree so old releases can still be built.
if: github.event_name == 'workflow_dispatch'
run: |
git fetch origin main --depth=1
git checkout origin/main -- Dockerfile .dockerignore

- name: Set up QEMU
uses: docker/setup-qemu-action@v3
Expand Down
Loading