Skip to content

Commit

Permalink
Tweaked release.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
bounav committed Dec 31, 2024
1 parent b5d85dc commit 9c6603d
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,17 +25,17 @@ jobs:
- name: Build
run: |
cd src
dotnet build --no-restore spark-ci.slnf
dotnet build spark-ci.slnf --no-restore
- name: Test
run: |
cd src
dotnet test --no-build --verbosity normal spark-ci.slnf
dotnet test spark-ci.slnf --verbosity normal --no-build
- name: Pack
run: |
cd src
dotnet pack spark-pack.slnf
dotnet pack spark-pack.slnf --include-symbols --output nupkgs --no-build
- name: Push to NuGet
run: |
cd src
dotnet nuget push "*.nupkg" --api-key ${{secrets.nuget_api_key}} --source https://api.nuget.org/v3/index.json
cd src/nupkgs
dotnet nuget push "**/*.nupkg" -s --api-key ${{secrets.nuget_api_key}} --source https://api.nuget.org/v3/index.json -v

0 comments on commit 9c6603d

Please sign in to comment.