File tree Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -98,19 +98,21 @@ jobs:
98
98
99
99
deploy :
100
100
name : Deploy Package
101
- runs-on : windows -latest
102
- needs : [build, publish-github ]
101
+ runs-on : ubuntu -latest
102
+ needs : [build]
103
103
if : github.event_name == 'release'
104
104
105
105
steps :
106
+ - name : Setup .NET
107
+ uses : actions/setup-dotnet@v4
108
+ with :
109
+ dotnet-version : 8.x
110
+
106
111
- name : Download packages
107
112
uses : actions/download-artifact@v4
108
113
with :
109
114
name : Packages
110
115
path : Packages
111
116
112
- - name : Setup .NET Core
113
- uses : actions/setup-dotnet@v4
114
-
115
117
- name : Publish NuGet Package
116
118
run : dotnet nuget push "Packages/*.nupkg" --skip-duplicate --api-key "${{ secrets.NUGET_APIKEY }}" --source https://api.nuget.org/v3/index.json
You can’t perform that action at this time.
0 commit comments