Skip to content

Commit 2498bc7

Browse files
committed
fix(arm-build): added the arm64 builds to CI pipeline
Signed-off-by: Krishna Mohan <[email protected]>
1 parent 9bbe3d3 commit 2498bc7

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.github/workflows/release.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,9 @@ jobs:
2929
with:
3030
fetch-depth: 0 # Full history for changelog generation
3131

32+
- name: Set up QEMU
33+
uses: docker/setup-qemu-action@v3
34+
3235
- name: Set up Docker Buildx
3336
uses: docker/setup-buildx-action@v3
3437

@@ -115,6 +118,7 @@ jobs:
115118
file: ./Dockerfile
116119
target: backend
117120
push: true
121+
platforms: linux/amd64,linux/arm64
118122
tags: ${{ steps.tags.outputs.backend_tags }}
119123
build-args: |
120124
VITE_GIT_SHA=${{ steps.git_sha.outputs.sha }}
@@ -130,6 +134,7 @@ jobs:
130134
file: ./Dockerfile
131135
target: worker
132136
push: true
137+
platforms: linux/amd64,linux/arm64
133138
tags: ${{ steps.tags.outputs.worker_tags }}
134139
build-args: |
135140
VITE_GIT_SHA=${{ steps.git_sha.outputs.sha }}
@@ -145,6 +150,7 @@ jobs:
145150
file: ./Dockerfile
146151
target: frontend
147152
push: true
153+
platforms: linux/amd64,linux/arm64
148154
tags: ${{ steps.tags.outputs.frontend_tags }}
149155
build-args: |
150156
VITE_GIT_SHA=${{ steps.git_sha.outputs.sha }}

0 commit comments

Comments
 (0)