From 87bc8e80c4163bc1025543ac3a1ba3d8f3e2baea Mon Sep 17 00:00:00 2001 From: weigan <1831197727@qq.com> Date: Wed, 14 Aug 2024 17:39:30 +0800 Subject: [PATCH] fixed workflow nuget package path error --- .github/workflows/nuget.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/nuget.yml b/.github/workflows/nuget.yml index 4edb2dbec..e20c7cbe2 100644 --- a/.github/workflows/nuget.yml +++ b/.github/workflows/nuget.yml @@ -74,7 +74,7 @@ jobs: dotnet build bindings\csharp\ManifoldNET.sln -c Release_MeshExport -p:Platform="Any CPU" - name: Publish to nuget.org - run: dotnet nuget push bindings\csharp\bin\Release\*.nupkg --api-key ${{ secrets.NugetKey }} --source https://api.nuget.org/v3/index.json + run: dotnet nuget push bindings\csharp\ManifoldNET\bin\Release\*.nupkg --api-key ${{ secrets.NugetKey }} --source https://api.nuget.org/v3/index.json - name: Publish mesh export to nuget.org - run: dotnet nuget push bindings\csharp\bin\Release_MeshExport\*.nupkg --api-key ${{ secrets.NugetKey }} --source https://api.nuget.org/v3/index.json + run: dotnet nuget push bindings\csharp\ManifoldNET\bin\Release_MeshExport\*.nupkg --api-key ${{ secrets.NugetKey }} --source https://api.nuget.org/v3/index.json