From 62bf6a3ac5699a2e1b0baf8ff9144a4f3b806ab5 Mon Sep 17 00:00:00 2001 From: Ben Parsons <9ParsonsB@users.noreply.github.com> Date: Sat, 3 Sep 2022 23:10:53 +1000 Subject: [PATCH] add publish to nuget --- .github/workflows/build.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 03f3854..0728eec 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 nuget push Raylib-cs/bin/Release/Raylib-cs.${{steps.get-nuget-version.outputs.info}}.nupkg -k $${{secrets.NUGET_API_KEY}}