Skip to content

Commit

Permalink
Attempts other approach with images
Browse files Browse the repository at this point in the history
  • Loading branch information
vpetersson committed Dec 7, 2024
1 parent 31c80a1 commit cef3795
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,8 @@ jobs:
echo "<details>"
echo "<summary>View Screenshot</summary>"
echo ""
echo "<img src=\"data:image/png;base64,$(base64 -w 0 "$img")\" width=\"800\">"
encoded=$(cat "$img" | base64)
echo "<img src=\"data:image/png;base64,${encoded}\" width=\"800\">"
echo ""
echo "</details>"
echo ""
Expand Down

0 comments on commit cef3795

Please sign in to comment.