Skip to content

Commit 799f63d

Browse files
CopilotDRSDavidSoft
andcommitted
Add success conditionals to upload summary and separate test completion step
Co-authored-by: DRSDavidSoft <4673812+DRSDavidSoft@users.noreply.github.com>
1 parent 6da8e58 commit 799f63d

2 files changed

Lines changed: 6 additions & 0 deletions

File tree

.github/workflows/build.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,7 @@ jobs:
120120
name: hashes.txt
121121

122122
- name: Summary - Artifacts uploaded
123+
if: success()
123124
shell: pwsh
124125
run: |
125126
echo "### ☁️ Upload Status" >> $env:GITHUB_STEP_SUMMARY

.github/workflows/tests.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,11 @@ jobs:
104104
shell: pwsh
105105
run: |
106106
echo "| Bash | ✅ Passed |" >> $env:GITHUB_STEP_SUMMARY
107+
108+
- name: Summary - All tests completed
109+
if: success()
110+
shell: pwsh
111+
run: |
107112
echo "" >> $env:GITHUB_STEP_SUMMARY
108113
echo "### ✅ All Tests Completed" >> $env:GITHUB_STEP_SUMMARY
109114
echo "" >> $env:GITHUB_STEP_SUMMARY

0 commit comments

Comments
 (0)