Build and release ARM docker images (#367)

* Build and release ARM docker images

* Build and release ARM docker images

* Build and release ARM docker images

* Build and release ARM docker images
This commit is contained in:
Andrey Pokhilko
2023-06-10 17:56:30 +01:00
committed by GitHub
parent 087399ad49
commit 64975cac42
3 changed files with 13 additions and 5 deletions

View File

@@ -62,6 +62,11 @@ jobs:
with:
images: komodorio/helm-dashboard
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Login to DockerHub
uses: docker/login-action@v1
if: github.event_name != 'pull_request'
@@ -70,7 +75,7 @@ jobs:
password: ${{ secrets.DOCKERHUB_PASS }}
- name: Build and push
uses: docker/build-push-action@v2
uses: docker/build-push-action@v4
if: github.event_name != 'pull_request'
with:
context: .
@@ -78,6 +83,7 @@ jobs:
tags: komodorio/helm-dashboard:${{ needs.pre_release.outputs.release_tag }},komodorio/helm-dashboard:latest
labels: ${{ steps.meta.outputs.labels }}
build-args: VER=${{ needs.pre_release.outputs.release_tag }}
platforms: linux/amd64,linux/arm64
publish_chart:
runs-on: ubuntu-latest