Skip to content

Commit 08bc035

Browse files
committed
Use absolute paths for all download-artifact-verified calls
Convert all path arguments to download-artifact-verified action from relative paths to absolute paths using ${{ github.workspace }}. This complements the earlier commit for upload-artifact-verified. Files updated: - wstest.yml (6 downloads) - release.yml (51 downloads) - release-post-comment.yml (2 downloads) Note: This work was completed with AI assistance (Claude Code).
1 parent 86f53e7 commit 08bc035

File tree

3 files changed

+59
-59
lines changed

3 files changed

+59
-59
lines changed

.github/workflows/release-post-comment.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -295,7 +295,7 @@ jobs:
295295
name: conformance-summary-quick
296296
run-id: ${{ steps.find-wstest.outputs.run_id }}
297297
github-token: ${{ secrets.GITHUB_TOKEN }}
298-
path: summary-artifact/
298+
path: ${{ github.workspace }}/summary-artifact/
299299
continue-on-error: true
300300

301301
- name: Get release notes from GitHub Release
@@ -473,7 +473,7 @@ jobs:
473473
name: conformance-summary-quick
474474
run-id: ${{ steps.find-wstest.outputs.run_id }}
475475
github-token: ${{ secrets.GITHUB_TOKEN }}
476-
path: summary-artifact/
476+
path: ${{ github.workspace }}/summary-artifact/
477477
continue-on-error: true
478478

479479
- name: Get release notes from GitHub Release

0 commit comments

Comments
 (0)