Skip to content

Commit

Permalink
chore(ci): Distribute linux/arm64 kona-fpp image
Browse files Browse the repository at this point in the history
  • Loading branch information
clabby committed Dec 2, 2024
1 parent 8bbbc6b commit 0550a60
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions .github/workflows/kona_fpp_docker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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:
Expand All @@ -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 }}

0 comments on commit 0550a60

Please sign in to comment.