Skip to content

Commit

Permalink
tbd
Browse files Browse the repository at this point in the history
  • Loading branch information
rdw-software committed Oct 20, 2024
1 parent 645e5aa commit 71aa752
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/ci-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -211,6 +211,18 @@ jobs:
echo "**Build Time:** ${BUILD_TIME} seconds" >> $GITHUB_STEP_SUMMARY
echo "**Build Date:** $(date)" >> $GITHUB_STEP_SUMMARY
echo "**Branch:** ${{ github.ref }}" >> $GITHUB_STEP_SUMMARY
if [ "${{ steps.cache-openssl.outputs.cache-hit }}" == 'true' ]; then
echo "- **OpenSSL:** Cache hit" >> $GITHUB_STEP_SUMMARY
echo " Cache key: openssl-${{ steps.revparse.outputs.openssl }}" >> $GITHUB_STEP_SUMMARY
else
echo "- **OpenSSL:** Cache miss, rebuilt" >> $GITHUB_STEP_SUMMARY
fi
if [ "${{ steps.cache-wgpu.outputs.cache-hit }}" == 'true' ]; then
echo "- **WGPU:** Cache hit" >> $GITHUB_STEP_SUMMARY
echo " Cache key: wgpu-${{ steps.revparse.outputs.wgpu }}" >> $GITHUB_STEP_SUMMARY
else
echo "- **WGPU:** Cache miss, rebuilt" >> $GITHUB_STEP_SUMMARY
fi
echo "## Changelog\n\n" >> $GITHUB_STEP_SUMMARY
cat CHANGELOG.MD >> $GITHUB_STEP_SUMMARY
Expand Down

0 comments on commit 71aa752

Please sign in to comment.