From 332b62305c4f06fc4c7876cad7472ee83a0e69af Mon Sep 17 00:00:00 2001 From: JoC0de <53140583+JoC0de@users.noreply.github.com> Date: Thu, 29 Jun 2023 20:54:30 +0200 Subject: [PATCH] Fixed Github Action Upload NuGetForUnity.Cli NuGet package --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 43dcad24..0030172e 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -146,7 +146,7 @@ jobs: - name: publish the NuGetForUnity.Cli NuGet package if: github.ref_type == 'tag' run: >- - dotnet nuget push .\NuGetForUnity.Cli.${{ needs.determineVersionNumber.outputs.version }}.nupkg --api-key ${{secrets.NUGET_API_TOKEN}} + dotnet nuget push ./NuGetForUnity.Cli.${{ needs.determineVersionNumber.outputs.version }}.nupkg --api-key ${{secrets.NUGET_API_TOKEN}} --source https://api.nuget.org/v3/index.json - name: Upload NuGetForUnity.Cli NuGet package