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