File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 17
17
8.0.x
18
18
19
19
- name : Build with dotnet
20
- run : dotnet build --configuration Release
20
+ run : dotnet build --configuration release
21
21
22
22
- name : Test
23
- run : dotnet test --configuration Release
23
+ run : dotnet test --configuration release
Original file line number Diff line number Diff line change 27
27
28
28
- name : Build with dotnet
29
29
run : |
30
- dotnet build --configuration Release
31
- dotnet pack --configuration Release --no-build
30
+ dotnet build --configuration release
31
+ dotnet pack --configuration release --no-build
32
32
33
33
- name : Install Nuget
34
34
uses : nuget/setup-nuget@v1
41
41
42
42
- name : Push generated package to GitHub registry
43
43
run : |
44
- nuget push .\bin\Release \*.nupkg -Source github -SkipDuplicate
45
- nuget push .\bin\Release \*.nupkg -Source https://api.nuget.org/v3/index.json -SkipDuplicate -ApiKey ${{ secrets.NugetKey }}
44
+ nuget push .\artifacts\package\release \*.nupkg -Source github -SkipDuplicate
45
+ nuget push .\artifacts\package\release \*.nupkg -Source https://api.nuget.org/v3/index.json -SkipDuplicate -ApiKey ${{ secrets.NugetKey }}
You can’t perform that action at this time.
0 commit comments