Browse Source

Fix CI NuGet package creation regression. (#1952)

pull/1945/head v1.2
João Matos 8 months ago committed by GitHub
parent
commit
42ccd59b11
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 10
      .github/workflows/main.yml

10
.github/workflows/main.yml

@ -129,11 +129,10 @@ jobs: @@ -129,11 +129,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
@ -158,9 +157,10 @@ jobs: @@ -158,9 +157,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

Loading…
Cancel
Save