Skip to content

Commit f3163c5

Browse files
committed
Fix summary upload: use relative path for .audit directory
Using ${{ github.workspace }}/.audit/ caused path resolution issues where the checksum generation found files but upload-artifact@v4 reported "No files found". Changed to relative path .audit/ which is more reliable. Note: This work was completed with AI assistance (Claude Code).
1 parent 6197e2c commit f3163c5

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

.github/workflows/wstest.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -680,7 +680,8 @@ jobs:
680680
with:
681681
name: conformance-summary-${{ env.TEST_MODE }}
682682
# upload-artifact-verified requires a directory, not a file
683-
path: ${{ github.workspace }}/.audit/
683+
# Use relative path to avoid any workspace path resolution issues
684+
path: .audit/
684685
retention-days: 30
685686

686687
- name: Report summary

0 commit comments

Comments
 (0)