From a23e8446d270bf822d063b5a74854e4f73c1c054 Mon Sep 17 00:00:00 2001 From: Ben Parsons <9ParsonsB@users.noreply.github.com> Date: Sat, 3 Sep 2022 23:12:37 +1000 Subject: [PATCH] Add Publish to NuGet on Release (#124) --- .github/workflows/build.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 03f3854..d41644b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -138,3 +138,6 @@ jobs: if: startsWith(github.ref, 'refs/tags/') with: files: Raylib-cs/bin/Release/Raylib-cs.${{steps.get-nuget-version.outputs.info}}.nupkg + + - name: Publish to NuGet + run: nuget push Raylib-cs/bin/Release/Raylib-cs.${{steps.get-nuget-version.outputs.info}}.nupkg -k $${{secrets.NUGET_API_KEY}}