From 802a199901d2c2199f160a155a8b50f76beaf795 Mon Sep 17 00:00:00 2001 From: Adam Hathcock Date: Wed, 22 May 2024 09:40:35 +0100 Subject: [PATCH] fix release workflow --- .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 2c33717..110e0f3 100644 --- a/.github/workflows/nuget.yml +++ b/.github/workflows/nuget.yml @@ -20,10 +20,10 @@ jobs: run: dotnet restore - name: Build - run: dotnet build --configuration Release --no-restore Speckle.ProxyGenerator/Speckle.ProxyGenerator.csproj + run: dotnet build --configuration Release --no-restore src/Speckle.ProxyGenerator/Speckle.ProxyGenerator.csproj - name: Pack - run: dotnet pack --no-build --configuration Release Speckle.ProxyGenerator/Speckle.ProxyGenerator.csproj --output . + run: dotnet pack --no-build --configuration Release src/Speckle.ProxyGenerator/Speckle.ProxyGenerator.csproj --output . - name: Push to nuget.org run: dotnet nuget push *.nupkg --source "https://api.nuget.org/v3/index.json" --api-key ${{secrets.CONNECTORS_NUGET_TOKEN }} --skip-duplicate \ No newline at end of file