From 8b20c3c577a774cf485768327d157dc3c94f130f Mon Sep 17 00:00:00 2001 From: tritao Date: Wed, 19 Nov 2025 14:09:13 +0000 Subject: [PATCH] Fix CI NuGet package creation regression. --- .github/workflows/main.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index fa978b121..69a9e7f05 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -105,11 +105,10 @@ jobs: - name: Upload Artifacts # We only need a release version of this in the create_package job if: matrix.build-cfg == 'Release' - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: - name: intermediate-${{ matrix.build-cfg }}-${{ matrix.platform }} + name: intermediate-${{ runner.os }}-${{ matrix.build-cfg }}-${{ matrix.platform }} retention-days: 7 - overwrite: true path: | artifacts include/**/*.h @@ -134,9 +133,10 @@ jobs: - name: Set version run: nbgv cloud --all-vars - - uses: actions/download-artifact@v4 + - uses: actions/download-artifact@v5 with: - name: intermediate-Release-x64 + pattern: intermediate* + merge-multiple: true - name: Setup shell: bash