File tree 1 file changed +9
-5
lines changed
1 file changed +9
-5
lines changed Original file line number Diff line number Diff line change @@ -100,9 +100,13 @@ jobs:
100
100
shell : bash
101
101
run : build/build.sh prepack -platform $PLATFORM -configuration $BUILD_CONFIGURATION
102
102
103
- - uses : actions/upload-artifact@v3
103
+ - uses : actions/upload-artifact@v4
104
+ # We only need a release version of this in the create_package job
105
+ if : matrix.build-cfg == "Release"
104
106
with :
105
- name : intermediate
107
+ name : intermediate-${{ matrix.build-cfg }}-${{ matrix.platform }}
108
+ retention-days : 7
109
+ overwrite : true
106
110
path : |
107
111
artifacts
108
112
include/**/*.h
@@ -127,9 +131,9 @@ jobs:
127
131
- name : Set version
128
132
run : nbgv cloud --all-vars
129
133
130
- - uses : actions/download-artifact@v3
134
+ - uses : actions/download-artifact@v4
131
135
with :
132
- name : intermediate
136
+ name : intermediate-Release-x64
133
137
134
138
- name : Setup
135
139
shell : bash
@@ -140,7 +144,7 @@ jobs:
140
144
run : build/build.sh pack -configuration $BUILD_CONFIGURATION
141
145
142
146
- name : Upload package
143
- uses : actions/upload-artifact@v3
147
+ uses : actions/upload-artifact@v4
144
148
with :
145
149
name : CppSharp.nupkg
146
150
path : |
You can’t perform that action at this time.
0 commit comments