Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(actions): trusted sync docker publish #376

Merged
merged 3 commits into from
Jul 11, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 }},ghcr.io/ethereum-optimism/kona/trusted-sync:${{ github.event.inputs.customTag }}
clabby marked this conversation as resolved.
Show resolved Hide resolved
labels: ${{ steps.meta.outputs.labels }}
Loading