Skip to content

Commit c00677b

Browse files
committed
Update GitHub Actions workflow for Docker
Add QEMU and Docker Buildx setup steps to the push-docker workflow, ensuring multi-architecture builds are supported. The release types configuration has also been slightly adjusted for consistency.
1 parent 46a97b8 commit c00677b

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

.github/workflows/push-docker.yaml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: push on dockerhub
2-
on:
2+
on:
33
release:
4-
types: [published]
4+
types: [ published ]
55
push:
66
branches:
77
- release-v2-dev
@@ -21,6 +21,12 @@ jobs:
2121
with:
2222
go-version: "1.22"
2323

24+
- name: Set up QEMU
25+
uses: docker/setup-qemu-action@v3
26+
27+
- name: Set up Docker Buildx
28+
uses: docker/setup-buildx-action@v3
29+
2430
- name: Login to Registry
2531
uses: docker/login-action@v1
2632
with:

0 commit comments

Comments
 (0)