Skip to content

Commit 91296a3

Browse files
committed
Fix integration.yaml to extract docker load output via head -n 1
1 parent 3b74bc0 commit 91296a3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/integration.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ jobs:
9090
- name: Install restate snapshot
9191
if: ${{ inputs.restateCommit != '' }}
9292
run: |
93-
output=$(docker load --input restate.tar)
93+
output=$(docker load --input restate.tar | head -n 1)
9494
docker tag "${output#*: }" "localhost/restatedev/restate-commit-download:latest"
9595
docker image ls -a
9696

0 commit comments

Comments
 (0)