Skip to content

Commit 5a84e29

Browse files
committed
Fix actions
1 parent 0302530 commit 5a84e29

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/dotnetcore.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@ jobs:
1919
run: sed 's/GITHUB_TOKEN/${{ secrets.RegistryToken }}/g' .nuget.config > nuget.config
2020

2121
- name: Test with dotnet
22-
run: dotnet pack --configuration Release -v:m | grep -v 'NAME_UNKNOWN:Package'
22+
run: dotnet build --configuration Release -v:m | grep -v 'NAME_UNKNOWN:Package'

.github/workflows/pushnuget.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
run: sed 's/GITHUB_TOKEN/${{ secrets.RegistryToken }}/g' .nuget.config > nuget.config
2222

2323
- name: Test with dotnet
24-
run: dotnet test --configuration Release -v:m | grep -v 'NAME_UNKNOWN:Package'
24+
run: dotnet build --configuration Release -v:m | grep -v 'NAME_UNKNOWN:Package'
2525

2626
- name: Pack nuget
2727
run: dotnet pack -o `pwd`/.nugets --configuration Release --no-build -v:m

0 commit comments

Comments
 (0)