Skip to content

Commit

Permalink
updated yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Federico Alterio authored and Federico Alterio committed Dec 16, 2024
1 parent 54052a3 commit 477b363
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/dotnet.yml → .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@ jobs:
- name: Restore dependencies
run: dotnet restore ./SignalsDotnet
- name: Build
run: dotnet build ./SignalsDotnet --no-restore
run: dotnet build -c Release ./SignalsDotnet --no-restore
- name: Test
run: dotnet test ./SignalsDotnet/SignalsDotnet.Tests --no-build --verbosity normal
run: dotnet test -c Release ./SignalsDotnet/SignalsDotnet.Tests --no-build --verbosity normal
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ jobs:
- name: Restore dependencies
run: dotnet restore ./SignalsDotnet
- name: Build
run: dotnet build ./SignalsDotnet --no-restore
run: dotnet build -c Release ./SignalsDotnet --no-restore
- name: Test
run: dotnet test ./SignalsDotnet/SignalsDotnet.Tests --no-build --verbosity normal
run: dotnet test -c Release ./SignalsDotnet/SignalsDotnet.Tests --no-build --verbosity normal
- name: Pack nugets
run: dotnet pack SignalsDotnet/SignalsDotnet -c Release --no-build --output .
- name: Push to NuGet
Expand Down

0 comments on commit 477b363

Please sign in to comment.