fix release workflow

This commit is contained in:
Adam Hathcock
2024-05-22 09:40:35 +01:00
parent b560ce9374
commit 802a199901
+2 -2
View File
@@ -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