Skip to content

Commit

Permalink
Fix actions
Browse files Browse the repository at this point in the history
  • Loading branch information
monoman committed Jan 16, 2020
1 parent 0302530 commit 5a84e29
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/dotnetcore.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ jobs:
run: sed 's/GITHUB_TOKEN/${{ secrets.RegistryToken }}/g' .nuget.config > nuget.config

- name: Test with dotnet
run: dotnet pack --configuration Release -v:m | grep -v 'NAME_UNKNOWN:Package'
run: dotnet build --configuration Release -v:m | grep -v 'NAME_UNKNOWN:Package'
2 changes: 1 addition & 1 deletion .github/workflows/pushnuget.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
run: sed 's/GITHUB_TOKEN/${{ secrets.RegistryToken }}/g' .nuget.config > nuget.config

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

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

0 comments on commit 5a84e29

Please sign in to comment.