File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -155,7 +155,7 @@ jobs:
155
155
156
156
benchmark :
157
157
if : ${{ github.env.is_release || vars.BENCHMARKDOTNET_RUN_OVERRIDE == 'true' }}
158
- name : Benchmark with .NET on ${{ matrix.os }}
158
+ name : Benchmark with .NET CLI on ${{ matrix.os }}
159
159
needs : [build]
160
160
strategy :
161
161
matrix :
@@ -190,7 +190,7 @@ jobs:
190
190
191
191
publish-docs :
192
192
if : ${{ github.env.is_release && !github.env.is_preview }}
193
- name : Docs with .NET
193
+ name : Docs with docfx
194
194
needs : [benchmark, test]
195
195
environment :
196
196
name : github-pages
@@ -229,7 +229,7 @@ jobs:
229
229
230
230
publish-package-internal :
231
231
if : ${{ !github.env.is_release }}
232
- name : Publish package with .NET
232
+ name : Publish package with .NET CLI
233
233
needs : [pack]
234
234
environment :
235
235
name : private-nuget-feed
@@ -247,13 +247,13 @@ jobs:
247
247
name : package
248
248
path : ${{ runner.temp }}/packages/
249
249
- run : |
250
- dotnet nuget add source ${{ secrets.PRIVATE_NUGET_PACKAGE_FEED_URL }} --name private-feed
250
+ dotnet nuget add source ${{ secrets.PRIVATE_NUGET_PACKAGE_FEED_URL }} --name private-feed --username username --password ${{ secrets.PRIVATE_NUGET_PACKAGE_FEED_API_KEY }} --store-password-in-clear-text
251
251
dotnet nuget push **/*.nupkg --source private-feed --api-key ${{ secrets.PRIVATE_NUGET_PACKAGE_FEED_API_KEY }}
252
252
working-directory: ${{ runner.temp }}/packages/
253
253
254
254
release-package :
255
255
if : ${{ github.env.is_release }}
256
- name : Release package with .NET
256
+ name : Release package with .NET CLI
257
257
needs : [pack, test]
258
258
environment :
259
259
name : public-nuget-feed
You can’t perform that action at this time.
0 commit comments