Skip to content

Commit

Permalink
fix docker inspect step in docker workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
yoori committed Nov 25, 2024
1 parent f2fd8c9 commit 0ed07c6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/docker-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,7 @@ jobs:
- name: Inspect image
run: |
docker buildx imagetools inspect $(echo "${{ steps.meta.outputs.tags }}" | sed -r 's/[ ]+/ /g' | tr ' ' '\n' | sed 's|^|${{ env.REGISTRY }}/|')
docker buildx imagetools inspect \
$(echo "${{ steps.meta.outputs.tags }}" | sed -r 's/[ ]+/ /g' | tr ' ' '\n' | sed -r 's|^|${{ env.REGISTRY }}/|')
# TODO: publish to docker.io

0 comments on commit 0ed07c6

Please sign in to comment.