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 @@ -25,17 +25,17 @@ jobs:
2525 - name : Build
2626 run : |
2727 cd src
28- dotnet build --no-restore spark-ci.slnf
28+ dotnet build spark-ci.slnf --no-restore
2929 - name : Test
3030 run : |
3131 cd src
32- dotnet test --no-build --verbosity normal spark-ci.slnf
32+ dotnet test spark-ci.slnf --verbosity normal --no-build
3333 - name : Pack
3434 run : |
3535 cd src
36- dotnet pack spark-pack.slnf
36+ dotnet pack spark-pack.slnf --include-symbols --output nupkgs --no-build
3737 - name : Push to NuGet
3838 run : |
39- cd src
40- dotnet nuget push "*.nupkg" -- api-key ${{secrets.nuget_api_key}} --source https://api.nuget.org/v3/index.json
39+ cd src/nupkgs
40+ dotnet nuget push "**/* .nupkg" -s -- api-key ${{secrets.nuget_api_key}} --source https://api.nuget.org/v3/index.json -v
4141
You can’t perform that action at this time.
0 commit comments