fix: replace workflow step summaries
All checks were successful
Push Validation / validate (push) Successful in 1m46s

This commit is contained in:
Micheal Wilkinson
2026-03-21 00:03:26 +00:00
parent 4c1a0b87eb
commit 33e1d7c9cc
4 changed files with 71 additions and 6 deletions

View File

@@ -23,6 +23,8 @@ jobs:
defaults:
run:
shell: bash
env:
SUMMARY_FILE: ${{ runner.temp }}/prepare-release-summary.md
steps:
- name: Checkout
uses: actions/checkout@v4
@@ -61,7 +63,21 @@ jobs:
echo
echo "- Tag pushed: ${tag}"
echo "- Calling Do Release workflow for ${tag}."
} >> "$GITHUB_STEP_SUMMARY"
} >> "$SUMMARY_FILE"
- name: Summary
if: ${{ always() }}
run: |
set -euo pipefail
echo 'Summary'
echo
if [[ -s "$SUMMARY_FILE" ]]; then
cat "$SUMMARY_FILE"
else
echo 'No summary generated.'
fi
publish:
needs: prepare