Skip to content

Commit 9b5a4dd

Browse files
author
root
committed
fix ci
1 parent bc1d25d commit 9b5a4dd

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/publish-images.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,8 @@ jobs:
115115
provenance: false
116116

117117
- name: Summarize published tags
118+
env:
119+
PUBLISHED_TAGS: ${{ steps.meta.outputs.tags }}
118120
run: |
119121
{
120122
echo "### Published Images"
@@ -123,9 +125,7 @@ jobs:
123125
echo "Commit: ${{ steps.meta.outputs.COMMIT_SHA }}"
124126
echo ""
125127
echo "Tags:"
126-
while IFS= read -r tag; do
128+
printf '%s\n' "$PUBLISHED_TAGS" | while IFS= read -r tag; do
127129
echo "- \`${tag}\`"
128-
done <<'EOF'
129-
${{ steps.meta.outputs.tags }}
130-
EOF
130+
done
131131
} >> "$GITHUB_STEP_SUMMARY"

0 commit comments

Comments
 (0)