Skip to content

Commit

Permalink
Changed templating for tags
Browse files Browse the repository at this point in the history
  • Loading branch information
cromefire committed Oct 22, 2023
1 parent 838c9e4 commit 65486f1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/docker-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ jobs:
# against the sigstore community Fulcio instance.
run: |
TAGS=""
for RAW_TAG in "${{ join(steps.meta.outputs.tags, ' ') }}"; do
for RAW_TAG in "${{ steps.meta.outputs.tags }}"; do
TAGS="${TAGS}$(printf "${RAW_TAG}@sha256:%s " *)"
done
for TAG in ${TAGS}; do
Expand All @@ -232,7 +232,7 @@ jobs:
- name: Inspect image
run: |
for RAW_TAG in "${{ join(steps.meta.outputs.tags, ' ') }}"; do
for RAW_TAG in "${{ steps.meta.outputs.tags }}"; do
echo "Inspecting ${RAW_TAG}"
docker buildx imagetools inspect "${RAW_TAG}"
done

0 comments on commit 65486f1

Please sign in to comment.