From db532467cc3693ff8fa2aba1095f706534452d04 Mon Sep 17 00:00:00 2001 From: Michael Date: Wed, 28 Sep 2022 17:45:25 -0400 Subject: [PATCH] Update manual_publish.yml --- .github/workflows/manual_publish.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/manual_publish.yml b/.github/workflows/manual_publish.yml index 6893632..47a4ae7 100644 --- a/.github/workflows/manual_publish.yml +++ b/.github/workflows/manual_publish.yml @@ -6,7 +6,7 @@ on: description: 'Release TAG to publish TO on gitea; e.g. v4.1.5-alpha' required: true cercContainerTag: - description: 'Container (SHA) to release-tag FROM' + description: 'Container (truncated!!! SHA) to release-tag FROM' required: true # A workflow run is made up of one or more jobs that can run sequentially or in parallel @@ -22,7 +22,7 @@ jobs: run: | echo ::set-output name=sha::$(echo ${cercContainerTag:0:7}) - name: Pull docker image by SHA - run: docker pull git.vdb.to/cerc-io/eth-statediff-service/eth-statediff-service:${{github.event.inputs.cercContainerTag:0:7}} + run: docker pull git.vdb.to/cerc-io/eth-statediff-service/eth-statediff-service:${{github.event.inputs.cercContainerTag}} - name: Tag docker image TAG run: docker tag git.vdb.to/cerc-io/eth-statediff-service/eth-statediff-service:${{steps.vars.outputs.sha}} git.vdb.to/cerc-io/eth-statediff-service/eth-statediff-service:${{github.event.inputs.giteaPublishTag}} - name: Docker Login