Skip to content

Commit

Permalink
add build args to release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
clabby committed Oct 22, 2024
1 parent e3e7535 commit 0de327a
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion .github/workflows/kona_fpp_docker.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@
name: Build and Publish Kona FPP Images

on: [workflow_dispatch, workflow_call]
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

env:
REGISTRY: ghcr.io
Expand Down Expand Up @@ -39,3 +49,6 @@ jobs:
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
platforms: linux/amd64
build-args: |
CLIENT_TAG=${{ inputs.kona_client_tag }}
ASTERISC_TAG=${{ inputs.asterisc_tag }}

0 comments on commit 0de327a

Please sign in to comment.