Browse Source

Fix CI NuGet package creation regression.

pull/1952/head
tritao 8 months ago
parent
commit
8b20c3c577
  1. 10
      .github/workflows/main.yml

10
.github/workflows/main.yml

@ -105,11 +105,10 @@ jobs:
- name: Upload Artifacts - name: Upload Artifacts
# We only need a release version of this in the create_package job # We only need a release version of this in the create_package job
if: matrix.build-cfg == 'Release' if: matrix.build-cfg == 'Release'
uses: actions/upload-artifact@v4 uses: actions/upload-artifact@v5
with: with:
name: intermediate-${{ matrix.build-cfg }}-${{ matrix.platform }} name: intermediate-${{ runner.os }}-${{ matrix.build-cfg }}-${{ matrix.platform }}
retention-days: 7 retention-days: 7
overwrite: true
path: | path: |
artifacts artifacts
include/**/*.h include/**/*.h
@ -134,9 +133,10 @@ jobs:
- name: Set version - name: Set version
run: nbgv cloud --all-vars run: nbgv cloud --all-vars
- uses: actions/download-artifact@v4 - uses: actions/download-artifact@v5
with: with:
name: intermediate-Release-x64 pattern: intermediate*
merge-multiple: true
- name: Setup - name: Setup
shell: bash shell: bash

Loading…
Cancel
Save