Skip to content

Commit 497da6b

Browse files
config: Update workflow file to build image on specific version release
1 parent 2a8ac94 commit 497da6b

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/action.yaml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,11 @@ jobs:
3232
echo "tag=${{ steps.branch_name.outputs.branch }}" >> $GITHUB_OUTPUT
3333
fi
3434
35+
# 🔑 Required for ARM builds
3536
- name: Set up QEMU
3637
uses: docker/setup-qemu-action@v2
38+
with:
39+
platforms: arm64
3740

3841
- name: Set up Docker Buildx
3942
uses: docker/setup-buildx-action@v2
@@ -44,11 +47,11 @@ jobs:
4447
username: ${{ secrets.DOCKER_USERNAME }}
4548
password: ${{ secrets.DOCKER_PASSWORD }}
4649

47-
- name: Build and push Docker image
50+
- name: Build and push multi-arch Docker image
4851
uses: docker/build-push-action@v4
4952
with:
5053
push: true
51-
platforms: linux/amd64
54+
platforms: linux/amd64,linux/arm64
5255
tags: ${{ secrets.DOCKER_REPO }}/helm-client:${{ steps.docker_tag.outputs.tag }}
5356

5457
- name: Update Docker Hub description

0 commit comments

Comments
 (0)