Skip to content

Commit 02679b8

Browse files
authored
Merge pull request #4 from tkhq/rno/try-using-github-summary
Try using `GITHUB_STEP_SUMMARY` on top of build output
2 parents 00d3c4b + dab1510 commit 02679b8

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/stagex.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,4 +77,10 @@ jobs:
7777
echo "Container Image URL: ${container_url}@sha256:${container_digest}"
7878
echo "Executable path: /tvc_app"
7979
echo "Expected Executable Digest: ${digest}"
80-
echo "--------------------------------"
80+
echo "--------------------------------"
81+
# Also use Github summary to display the details in a more visible way within build output
82+
echo "## TVC Deployment Details" >> $GITHUB_STEP_SUMMARY
83+
echo "" >> $GITHUB_STEP_SUMMARY
84+
echo "- **Container Image URL**: \`${container_url}@sha256:${container_digest}\`" >> $GITHUB_STEP_SUMMARY
85+
echo "- **Executable path**: \`/tvc_app\`" >> $GITHUB_STEP_SUMMARY
86+
echo "- **Expected Executable Digest**: \`${digest}\`" >> $GITHUB_STEP_SUMMARY

0 commit comments

Comments
 (0)