From c7954ea9120ad767f05ff14c911aa16142d74fe7 Mon Sep 17 00:00:00 2001 From: refcell Date: Thu, 11 Jul 2024 15:16:57 -0400 Subject: [PATCH] fix(actions): trusted sync docker publish (#376) * fix(actions): trusted sync docker publish * fix * fully qualified path --- .github/workflows/trusted_sync_docker.yaml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/trusted_sync_docker.yaml b/.github/workflows/trusted_sync_docker.yaml index e14303e7..8190c368 100644 --- a/.github/workflows/trusted_sync_docker.yaml +++ b/.github/workflows/trusted_sync_docker.yaml @@ -2,6 +2,11 @@ name: Publish Trusted Sync Binary Image on: workflow_dispatch: + inputs: + customTag: + description: 'Custom Docker Image Tag (keep empty for latest)' + required: false + default: 'latest' env: REGISTRY: ghcr.io @@ -34,5 +39,5 @@ jobs: file: examples/trusted-sync/Dockerfile context: . push: true - tags: ${{ steps.meta.outputs.tags }} + tags: ${{ steps.meta.outputs.tags }},ethereum-optimism/kona/trusted-sync:${{ github.event.inputs.customTag }} labels: ${{ steps.meta.outputs.labels }}