Skip to content

Commit 9c6603d

Browse files
committed
Tweaked release.yml
1 parent b5d85dc commit 9c6603d

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/release.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)