From aeddb1bdcaa045b508e4ea9531b5e1722d203fc3 Mon Sep 17 00:00:00 2001 From: clabby Date: Tue, 10 Sep 2024 00:12:15 -0400 Subject: [PATCH] feat(ci): Release prestate build image --- .github/workflows/kona_fpp_docker.yaml | 41 ++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 .github/workflows/kona_fpp_docker.yaml diff --git a/.github/workflows/kona_fpp_docker.yaml b/.github/workflows/kona_fpp_docker.yaml new file mode 100644 index 000000000..0ae066876 --- /dev/null +++ b/.github/workflows/kona_fpp_docker.yaml @@ -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