From 5a84e29d96138c5d362b199d88d85a6e175d4c0d Mon Sep 17 00:00:00 2001 From: Rafael Teixeira Date: Thu, 16 Jan 2020 17:08:18 -0300 Subject: [PATCH] Fix actions --- .github/workflows/dotnetcore.yml | 2 +- .github/workflows/pushnuget.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/dotnetcore.yml b/.github/workflows/dotnetcore.yml index 1d0b4ce..3e28d7d 100644 --- a/.github/workflows/dotnetcore.yml +++ b/.github/workflows/dotnetcore.yml @@ -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' diff --git a/.github/workflows/pushnuget.yml b/.github/workflows/pushnuget.yml index 39cc9fb..778d64f 100644 --- a/.github/workflows/pushnuget.yml +++ b/.github/workflows/pushnuget.yml @@ -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