Skip to content

Commit c8dbbe6

Browse files
committed
Use docker-container driver in release workflow as buildx has changed
Signed-off-by: Kimmo Lehto <[email protected]>
1 parent 654f7dd commit c8dbbe6

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

.github/workflows/release.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,15 @@ jobs:
2727
username: ${{ github.actor }}
2828
password: ${{ secrets.GITHUB_TOKEN }}
2929

30+
- name: Set up QEMU
31+
uses: docker/setup-qemu-action@v3
32+
33+
- name: Set up Docker Buildx
34+
id: buildx
35+
uses: docker/setup-buildx-action@v3
36+
with:
37+
driver: docker-container
38+
3039
- name: Set up Go
3140
uses: actions/setup-go@v5
3241
with:
@@ -56,6 +65,7 @@ jobs:
5665
uses: docker/build-push-action@v6
5766
if: startsWith(github.ref, 'refs/tags/')
5867
with:
68+
builder: ${{ steps.buildx.outputs.name }}
5969
context: .
6070
platforms: linux/amd64,linux/arm64,linux/arm/v7
6171
tags: |

0 commit comments

Comments
 (0)