File tree Expand file tree Collapse file tree 1 file changed +21
-2
lines changed Expand file tree Collapse file tree 1 file changed +21
-2
lines changed Original file line number Diff line number Diff line change @@ -67,12 +67,31 @@ jobs:
67
67
- name : " Dotnet Cake Pack"
68
68
run : dotnet cake --target=Pack
69
69
shell : pwsh
70
+ - name : " Upload NuGet packages"
71
+ uses : actions/upload-artifact@v4
72
+ with :
73
+ name : nuget-packages-${{ matrix.dotnet-version }}
74
+ path : ./Artifacts/*.nupkg
75
+
70
76
publish :
71
77
needs : build
72
78
runs-on : ubuntu-latest
73
79
steps :
74
- - name : Checkout code
75
-
80
+ - name : " Download NuGet packages"
81
+ uses : actions/download-artifact@v4
82
+ with :
83
+ name : nuget-packages-6.0.x
84
+ path : ./Artifacts
85
+ - name : " Download NuGet packages"
86
+ uses : actions/download-artifact@v4
87
+ with :
88
+ name : nuget-packages-7.0.x
89
+ path : ./Artifacts
90
+ - name : " Download NuGet packages"
91
+ uses : actions/download-artifact@v4
92
+ with :
93
+ name : nuget-packages-8.0.x
94
+ path : ./Artifacts
76
95
77
96
- name : Push to NuGet
78
97
if : github.event_name == 'release'
You can’t perform that action at this time.
0 commit comments