Skip to content

Commit 42ccd59

Browse files
authored
Fix CI NuGet package creation regression. (#1952)
1 parent 8f2f92b commit 42ccd59

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/main.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -129,11 +129,10 @@ jobs:
129129
- name: Upload Artifacts
130130
# We only need a release version of this in the create_package job
131131
if: matrix.build-cfg == 'Release'
132-
uses: actions/upload-artifact@v4
132+
uses: actions/upload-artifact@v5
133133
with:
134-
name: intermediate-${{ matrix.build-cfg }}-${{ matrix.platform }}
134+
name: intermediate-${{ runner.os }}-${{ matrix.build-cfg }}-${{ matrix.platform }}
135135
retention-days: 7
136-
overwrite: true
137136
path: |
138137
artifacts
139138
include/**/*.h
@@ -158,9 +157,10 @@ jobs:
158157
- name: Set version
159158
run: nbgv cloud --all-vars
160159

161-
- uses: actions/download-artifact@v4
160+
- uses: actions/download-artifact@v5
162161
with:
163-
name: intermediate-Release-x64
162+
pattern: intermediate*
163+
merge-multiple: true
164164

165165
- name: Setup
166166
shell: bash

0 commit comments

Comments
 (0)