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 fb41675
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 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 @@ -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:
Expand All @@ -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 }}

0 comments on commit fb41675

Please sign in to comment.