Skip to content

Commit

Permalink
fix(actions): trusted sync docker publish (#376)
Browse files Browse the repository at this point in the history
* fix(actions): trusted sync docker publish

* fix

* fully qualified path
  • Loading branch information
refcell authored Jul 11, 2024
1 parent fbce137 commit c7954ea
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/trusted_sync_docker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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 }}

0 comments on commit c7954ea

Please sign in to comment.