Skip to content

Commit

Permalink
publish manifest
Browse files Browse the repository at this point in the history
  • Loading branch information
clabby committed Dec 2, 2024
1 parent b6edc5c commit 0fe7116
Showing 1 changed file with 32 additions and 19 deletions.
51 changes: 32 additions & 19 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,6 +21,7 @@ jobs:
strategy:
matrix:
fpvm: ["asterisc"]
platform: ["amd64", "arm64"]
env:
IMAGE_NAME: ${{ github.repository }}/kona-fpp-${{ matrix.fpvm }}
steps:
Expand All @@ -40,27 +38,42 @@ jobs:
uses: docker/metadata-action@v5
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
- name: Build and Publish `kona-fpp-${{ matrix.fpvm }}` (amd64)
- name: Build and Publish `kona-fpp-${{ matrix.fpvm }}` (${{ matrix.platform }})
uses: docker/build-push-action@v6
with:
file: build/${{ matrix.fpvm }}/${{ matrix.fpvm }}-repro.dockerfile
context: .
push: true
tags: ${{ steps.meta.outputs.tags }}
tags: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ github.ref_name }}-${{ matrix.platform }}
labels: ${{ steps.meta.outputs.labels }}
platforms: linux/amd64
platforms: linux/${{ matrix.platform }}
build-args: |
CLIENT_TAG=${{ inputs.kona_client_tag }}
CLIENT_TAG=${{ github.ref_name }}
ASTERISC_TAG=${{ inputs.asterisc_tag }}
- name: Build and Publish `kona-fpp-${{ matrix.fpvm }}` (arm64)
uses: docker/build-push-action@v6
publish-multiarch-manifest:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
needs: build-fpp-images
strategy:
matrix:
fpvm: ["asterisc"]
env:
IMAGE_NAME: ${{ github.repository }}/kona-fpp-${{ matrix.fpvm }}
steps:
- name: Authenticate with container registry
uses: docker/login-action@v3
with:
file: build/${{ matrix.fpvm }}/${{ matrix.fpvm }}-repro.dockerfile
context: .
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
platforms: linux/arm64
build-args: |
CLIENT_TAG=${{ inputs.kona_client_tag }}
ASTERISC_TAG=${{ inputs.asterisc_tag }}
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Create and Push Multi-Arch Manifest
run: |
docker manifest create ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ github.ref_name }} \
--amend ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ github.ref_name }}-amd64 \
--amend ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ github.ref_name }}-arm64
docker manifest push ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ github.ref_name }}
- name: Inspect Manifest
run: |
docker manifest inspect ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ github.ref_name }}

0 comments on commit 0fe7116

Please sign in to comment.