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