From 5d29d6031db1d450e3805867ea17c56edf1cd2dd Mon Sep 17 00:00:00 2001 From: maj00r Date: Tue, 25 Aug 2026 23:46:27 +0200 Subject: [PATCH] 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". --- .github/workflows/dotnet.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index b262753..be232c3 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -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