From c02e51b9938ea5235eac358d15b6d44251b4384e Mon Sep 17 00:00:00 2001 From: refcell Date: Thu, 11 Jul 2024 14:49:47 -0400 Subject: [PATCH 1/3] fix(actions): trusted sync docker publish --- .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 e14303e76..70ed009c6 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 }},ghcr.io/ethereum-optimism/kona/trusted-sync:${{ github.event.inputs.customTag }} labels: ${{ steps.meta.outputs.labels }} From 1193d49def79a5060e07d53e50c9721804d07d68 Mon Sep 17 00:00:00 2001 From: refcell Date: Thu, 11 Jul 2024 15:04:16 -0400 Subject: [PATCH 2/3] fix --- .github/workflows/trusted_sync_docker.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/trusted_sync_docker.yaml b/.github/workflows/trusted_sync_docker.yaml index 70ed009c6..af4ef0bf1 100644 --- a/.github/workflows/trusted_sync_docker.yaml +++ b/.github/workflows/trusted_sync_docker.yaml @@ -39,5 +39,5 @@ jobs: file: examples/trusted-sync/Dockerfile context: . push: true - tags: ${{ steps.meta.outputs.tags }},ghcr.io/ethereum-optimism/kona/trusted-sync:${{ github.event.inputs.customTag }} + tags: ${{ steps.meta.outputs.tags }},trusted-sync:${{ github.event.inputs.customTag }} labels: ${{ steps.meta.outputs.labels }} From 519f58dcccf75b4c27445a3e24ac767438d23c54 Mon Sep 17 00:00:00 2001 From: refcell Date: Thu, 11 Jul 2024 15:14:22 -0400 Subject: [PATCH 3/3] fully qualified path --- .github/workflows/trusted_sync_docker.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/trusted_sync_docker.yaml b/.github/workflows/trusted_sync_docker.yaml index af4ef0bf1..8190c368b 100644 --- a/.github/workflows/trusted_sync_docker.yaml +++ b/.github/workflows/trusted_sync_docker.yaml @@ -39,5 +39,5 @@ jobs: file: examples/trusted-sync/Dockerfile context: . push: true - tags: ${{ steps.meta.outputs.tags }},trusted-sync:${{ github.event.inputs.customTag }} + tags: ${{ steps.meta.outputs.tags }},ethereum-optimism/kona/trusted-sync:${{ github.event.inputs.customTag }} labels: ${{ steps.meta.outputs.labels }}