Download the packages with download-artifact v8

The packages are uploaded with archive: false, and non-zipped artifacts can
only be fetched by v8 of download-artifact - v7 fetched the first one, then
failed the run with "Unable to download and extract artifact".
This commit is contained in:
maj00r
2026-08-25 23:46:27 +02:00
parent 5e4416c9cb
commit 5d29d6031d

View File

@@ -127,8 +127,10 @@ jobs:
RELEASE_NAME: ${{ github.ref_name == 'main' && 'Latest build' || 'Staging build' }}
steps:
# v8, not v7: the packages are uploaded with archive: false, and only v8
# can pull those non-zipped artifacts back down.
- name: Collect the packages
uses: actions/download-artifact@v7
uses: actions/download-artifact@v8
with:
path: dist
merge-multiple: true