Skip to content

Commit 6197e2c

Browse files
committed
Fix summary upload: use directory path instead of file path
The upload-artifact-verified action requires a directory path, not a file path. Changed from uploading the specific .md file to uploading the .audit/ directory containing it. Note: This work was completed with AI assistance (Claude Code).
1 parent 55f723f commit 6197e2c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/wstest.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -679,7 +679,8 @@ jobs:
679679
uses: wamp-proto/wamp-cicd/actions/upload-artifact-verified@main
680680
with:
681681
name: conformance-summary-${{ env.TEST_MODE }}
682-
path: ${{ env.SUMMARY_FILE }}
682+
# upload-artifact-verified requires a directory, not a file
683+
path: ${{ github.workspace }}/.audit/
683684
retention-days: 30
684685

685686
- name: Report summary

0 commit comments

Comments
 (0)