Skip to content

Commit b7fbde1

Browse files
committed
Fix docker image step reference.
1 parent e4aab26 commit b7fbde1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ runs:
5151
THRESHOLD: ${{ inputs.synchronization-level }}
5252
run: |
5353
set -eo pipefail
54-
docker run -d --name ${{ inputs.container-name }} -p ${{ inputs.ogmios-port }}:1337 -v ${{ inputs.db-dir }}:/db ${{ steps.docker-image.outputs.value }}
54+
docker run -d --name ${{ inputs.container-name }} -p ${{ inputs.ogmios-port }}:1337 -v ${{ inputs.db-dir }}:/db ${{ steps.docker-image.outputs.image }}
5555
sleep 3
5656
URL=http://localhost:$OGMIOS_PORT/health
5757
echo "Begin synchronization, target: $THRESHOLD"
@@ -82,5 +82,5 @@ runs:
8282
run: |
8383
docker stop ${{ inputs.container-name }}
8484
docker rm ${{ inputs.container-name }}
85-
docker rmi ${{ steps.docker-image.outputs.value }}
85+
docker rmi ${{ steps.docker-image.outputs.image }}
8686
shell: bash

0 commit comments

Comments
 (0)