Skip to content

Commit

Permalink
fix md links
Browse files Browse the repository at this point in the history
  • Loading branch information
signed-long committed Jun 23, 2024
1 parent f692209 commit 78c92a8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/preview.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,8 @@ jobs:
id: ss_urls
run: |
for img in dist/images/*.playwright.png; do
md_links="$md_links\n![${img}](https://${{ steps.pr.outputs.result }}.connect-d5y.pages.dev/images/${img})"
img=$(basename $img)
md_links="$md_links<br/>![${img}](https://${{ steps.pr.outputs.result }}.connect-d5y.pages.dev/images/${img})"
done
echo "md_links=$md_links" >> $GITHUB_OUTPUT
Expand Down

0 comments on commit 78c92a8

Please sign in to comment.