Skip to content

Commit d174b9a

Browse files
committed
Fix CI NuGet package creation regression.
1 parent 9a4c48d commit d174b9a

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
@@ -105,11 +105,10 @@ jobs:
105105
- name: Upload Artifacts
106106
# We only need a release version of this in the create_package job
107107
if: matrix.build-cfg == 'Release'
108-
uses: actions/upload-artifact@v4
108+
uses: actions/upload-artifact@v5
109109
with:
110-
name: intermediate-${{ matrix.build-cfg }}-${{ matrix.platform }}
110+
name: intermediate-(${{ toLower(runner.os) }})-${{ matrix.build-cfg }}-${{ matrix.platform }}
111111
retention-days: 7
112-
overwrite: true
113112
path: |
114113
artifacts
115114
include/**/*.h
@@ -134,9 +133,10 @@ jobs:
134133
- name: Set version
135134
run: nbgv cloud --all-vars
136135

137-
- uses: actions/download-artifact@v4
136+
- uses: actions/download-artifact@v5
138137
with:
139-
name: intermediate-Release-x64
138+
pattern: intermediate*
139+
merge-multiple: true
140140

141141
- name: Setup
142142
shell: bash

0 commit comments

Comments
 (0)