Skip to content
Open
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: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7

# Image tag is the version without the leading 'v' (v0.5.24 → 0.5.24),
# matching what the module index references. GITHUB_REF_NAME is the tag,
Expand All @@ -27,18 +27,18 @@ jobs:
id: v
run: echo "version=${GITHUB_REF_NAME#v}" >> "$GITHUB_OUTPUT"

- uses: docker/setup-qemu-action@v3 # cross-build arm64 on the amd64 runner
- uses: docker/setup-buildx-action@v3
- uses: docker/setup-qemu-action@v4 # cross-build arm64 on the amd64 runner
- uses: docker/setup-buildx-action@v4

- name: Log in to GHCR
uses: docker/login-action@v3
uses: docker/login-action@v4
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Build & push
uses: docker/build-push-action@v6
uses: docker/build-push-action@v7
with:
context: .
platforms: linux/amd64,linux/arm64 # run on Intel + Apple-silicon clusters
Expand Down