Skip to content

Commit

Permalink
Update ci-windows.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
rdw-software committed Oct 20, 2024
1 parent 2a1ae84 commit 7bb4f7e
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/ci-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,17 @@ jobs:
name: CHANGELOG-PREVIEW-LINUX.MD
path: CHANGELOG.MD

- name: Generate build summary
run: |
echo "## Build Stats" >> $GITHUB_STEP_SUMMARY
echo "**Build Time:** ${BUILD_TIME} seconds" >> $GITHUB_STEP_SUMMARY
echo "**Build Date:** $(date)" >> $GITHUB_STEP_SUMMARY
echo "**Branch:** ${{ github.ref }}" >> $GITHUB_STEP_SUMMARY
echo "## Changelog" >> $GITHUB_STEP_SUMMARY
tail -n +3 CHANGELOG.MD >> $GITHUB_STEP_SUMMARY
BUILD_TIME=$(($(date +%s) - ${{ github.event.workflow_run.created_at }}))
# TODO publish artifacts (changelog/build summary/logs?)

- name: Publish new release
# Truly "continuous" releases may be overkill here, so better only release tagged versions
Expand Down

0 comments on commit 7bb4f7e

Please sign in to comment.