Skip to content

Commit

Permalink
feat(ci): Release prestate build image
Browse files Browse the repository at this point in the history
  • Loading branch information
clabby committed Sep 10, 2024
1 parent af4e4cd commit aeddb1b
Showing 1 changed file with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions .github/workflows/kona_fpp_docker.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
name: Build and Publish Kona FPP Images

on: [workflow_dispatch, workflow_call, push]

env:
REGISTRY: ghcr.io

jobs:
build-fpp-images:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
strategy:
matrix:
fpvm: ["asterisc"]
env:
IMAGE_NAME: ${{ github.repository }}/kona-fpp-${{ matrix.fpvm }}
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Authenticate with container registry
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Docker metadata
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
- name: Build and Publish `kona-fpp-${{ matrix.fpvm }}`
uses: docker/build-push-action@v6
with:
file: build/${{ matrix.fpvm }}/${{ matrix.fpvm }}-repro.dockerfile
context: .
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
platforms: linux/amd64,linux/arm64

0 comments on commit aeddb1b

Please sign in to comment.