fix: set merge-multiple false for download-artifact v7

download-artifact@v7 defaults merge-multiple to true, which puts all
files flat in qa-artifacts/ instead of per-artifact subdirectories.
The merge step expects qa-artifacts/qa-before-{os}-{run}/ subdirs,
so the report directory never gets created and video review finds
no files.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
snomiao
2026-03-21 03:06:55 +00:00
parent ad35fa460a
commit d0b3fd8a3c

View File

@@ -338,12 +338,14 @@ jobs:
with:
path: qa-artifacts
pattern: qa-before-*
merge-multiple: false
- name: Download AFTER artifacts
uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0
with:
path: qa-artifacts
pattern: qa-after-*
merge-multiple: false
- name: Merge artifacts into per-OS report directories
run: |