From b6df000f9f7f9ea110ec63c1e5ca175bdd9e3692 Mon Sep 17 00:00:00 2001 From: David Paquette Date: Fri, 6 Mar 2020 13:54:19 -0700 Subject: [PATCH] Publish to nuget in release workflow --- .github/workflows/release.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 99c1d67..558a7f6 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -28,3 +28,5 @@ jobs: with: name: AspNetMonsters.ApplicationInsights path: ./AspNetMonsters.ApplicationInsights/AspNetMonsters.ApplicationInsights/bin/Release/AspNetMonsters.ApplicationInsights.${{ github.event.release.tag_name }}.nupkg + - name: Publish Nuget Package + run: dotnet nuget push **/*.nupkg --api-key ${{ secrets.nuget_api_key }} --source https://api.nuget.org/v3/index.json