Skip to content

Commit

Permalink
Fix integration.yaml to extract docker load output via head -n 1
Browse files Browse the repository at this point in the history
  • Loading branch information
tillrohrmann committed Feb 14, 2025
1 parent 3b74bc0 commit 91296a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/integration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ jobs:
- name: Install restate snapshot
if: ${{ inputs.restateCommit != '' }}
run: |
output=$(docker load --input restate.tar)
output=$(docker load --input restate.tar | head -n 1)
docker tag "${output#*: }" "localhost/restatedev/restate-commit-download:latest"
docker image ls -a
Expand Down

0 comments on commit 91296a3

Please sign in to comment.