File tree Expand file tree Collapse file tree 2 files changed +11
-0
lines changed Expand file tree Collapse file tree 2 files changed +11
-0
lines changed Original file line number Diff line number Diff line change 69
69
if : startsWith(github.ref, 'refs/tags/v')
70
70
steps :
71
71
- uses : actions/checkout@v4
72
+
73
+ - name : Set up QEMU
74
+ uses : docker/setup-qemu-action@v2
75
+
76
+ - name : Set up Docker Buildx
77
+ uses : docker/setup-buildx-action@v3
78
+
72
79
- name : Login to GitHub Container Registry
73
80
uses : docker/login-action@v3
74
81
with :
85
92
with :
86
93
context : .
87
94
push : true
95
+ platforms : linux/amd64,linux/arm64
88
96
tags : ${{ steps.docker-metadata.outputs.tags }}
89
97
labels : ${{ steps.docker-metadata.outputs.labels }}
90
98
Original file line number Diff line number Diff line change @@ -4,6 +4,9 @@ This changelog documents the changes between release versions.
4
4
## [ Unreleased]
5
5
Changes to be included in the next upcoming release
6
6
7
+ ## [ 0.0.30] - 2024-07-22
8
+ * Update workflow to create multi-platform build
9
+
7
10
## [ 0.0.29] - 2024-07-18
8
11
* Update SDK
9
12
You can’t perform that action at this time.
0 commit comments