diff --git a/.github/workflows/dotnetcore.yml b/.github/workflows/dotnetcore.yml index 6cf8b74..a0d4e2c 100644 --- a/.github/workflows/dotnetcore.yml +++ b/.github/workflows/dotnetcore.yml @@ -15,5 +15,9 @@ jobs: dotnet-version: 2.2.207 - name: Install additional dotnet 3.0 run: sudo apt-get install dotnet-sdk-3.0 - - name: Build and test with dotnet + - name: Create NuGet.Config.template + run: echo '' > NuGet.Config.template + - name: Setup Nuget.Config + run: sed -e "s/GH_TOKEN/${{ secrets.RegistryToken }}/" NuGet.Config.template > NuGet.Config + - name: Test with dotnet run: dotnet test --configuration Release -v:m