Skip to content

Also push the manifest #73

Also push the manifest

Also push the manifest #73

Workflow file for this run

name: Build docker image
permissions:
contents: read
on: [push]
jobs:
build-action:
runs-on: ubuntu-latest
strategy:
fail-fast: false
max-parallel: 2
matrix:
# Not all for time waste reasons
platform: ["linux/arm64", "linux/amd64"]
steps:
- name: Checkout repository
uses: actions/checkout@v4
# https://github.com/docker/setup-qemu-action
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
# https://github.com/docker/setup-buildx-action
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build action image
run: PLATFORM="${{ matrix.platform }}" make docker-build
env:
DOCKER_BUILDKIT: 1