Use manifests to build for amd64 and arm64 (#798)

This adds ARM container builds to the CI pipeline
This commit is contained in:
cybermaggedon 2026-04-13 20:51:09 +01:00 committed by GitHub
parent 1515dbaf08
commit 76c1752748
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 33 additions and 137 deletions

View file

@ -27,6 +27,12 @@ jobs:
- name: Checkout
uses: actions/checkout@v4
# This allows the x86 runner to emulate ARM, needed to build ARM images
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
with:
platforms: arm64
- name: Get version
id: version
run: echo VERSION=$(git describe --exact-match --tags | sed 's/^v//') >> $GITHUB_OUTPUT
@ -80,8 +86,8 @@ jobs:
run: make update-package-versions VERSION=${{ steps.version.outputs.VERSION }}
- name: Build container - ${{ matrix.container }}
run: make container-${{ matrix.container }} VERSION=${{ steps.version.outputs.VERSION }}
run: make manifest-${{ matrix.container }} VERSION=${{ steps.version.outputs.VERSION }}
- name: Push container - ${{ matrix.container }}
run: make push-${{ matrix.container }} VERSION=${{ steps.version.outputs.VERSION }}
run: make push-manifest-${{ matrix.container }} VERSION=${{ steps.version.outputs.VERSION }}