1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -84,12 +84,12 @@ jobs:
84
84
cd src/D2Sharp/d2wrapper
85
85
go build -buildmode=c-shared -o d2wrapper${{ runner.os == 'Windows' && '.dll' || runner.os == 'macOS' && '.dylib' || '.so' }} .
86
86
- name : Upload D2Sharp build artifact
87
- uses : actions/upload-artifact@v3
87
+ uses : actions/upload-artifact@v4
88
88
with :
89
89
name : d2net-${{ matrix.os }}
90
90
path : src/D2Sharp/bin/Release/net8.0/D2Sharp.*
91
91
- name : Upload native library
92
- uses : actions/upload-artifact@v3
92
+ uses : actions/upload-artifact@v4
93
93
with :
94
94
name : d2wrapper-${{ matrix.os }}
95
95
path : src/D2Sharp/d2wrapper/d2wrapper*
@@ -159,7 +159,7 @@ jobs:
159
159
- name : Pack NuGet package
160
160
run : nuget pack D2Sharp.nuspec -BasePath package
161
161
- name : Upload NuGet package
162
- uses : actions/upload-artifact@v3
162
+ uses : actions/upload-artifact@v4
163
163
with :
164
164
name : nuget-package
165
165
path : ./*.nupkg
0 commit comments