From fb41675fbbe0b0a6a1df6d7efb5e039d67c1d7f7 Mon Sep 17 00:00:00 2001 From: clabby Date: Mon, 2 Dec 2024 17:03:47 -0500 Subject: [PATCH] chore(ci): Distribute `linux/arm64` `kona-fpp` image --- .github/workflows/kona_fpp_docker.yaml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/.github/workflows/kona_fpp_docker.yaml b/.github/workflows/kona_fpp_docker.yaml index a6efccc79..b17564fc3 100644 --- a/.github/workflows/kona_fpp_docker.yaml +++ b/.github/workflows/kona_fpp_docker.yaml @@ -3,14 +3,11 @@ name: Build and Publish Kona FPP Images on: workflow_dispatch: inputs: - kona_client_tag: - description: Tag for `kona` to build `kona-client` - required: true - type: string asterisc_tag: description: Tag for `asterisc` to build the prestate artifacts required: true type: string + push: env: REGISTRY: ghcr.io @@ -29,6 +26,10 @@ jobs: steps: - name: Checkout repository uses: actions/checkout@v4 + - name: Set up QEMU + uses: docker/setup-qemu-action@v3 + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v3 - name: Authenticate with container registry uses: docker/login-action@v3 with: @@ -46,9 +47,9 @@ jobs: file: build/${{ matrix.fpvm }}/${{ matrix.fpvm }}-repro.dockerfile context: . push: true + platforms: linux/amd64,linux/arm64 tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }} - platforms: linux/amd64 build-args: | - CLIENT_TAG=${{ inputs.kona_client_tag }} + CLIENT_TAG=${{ github.ref_name }} ASTERISC_TAG=${{ inputs.asterisc_tag }}