diff --git a/.github/workflows/kona_fpp_docker.yaml b/.github/workflows/kona_fpp_docker.yaml index a6efccc79..09450b3c9 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 @@ -24,11 +21,16 @@ jobs: strategy: matrix: fpvm: ["asterisc"] + platform: ["amd64", "arm64"] env: IMAGE_NAME: ${{ github.repository }}/kona-fpp-${{ matrix.fpvm }} 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 +48,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 }}