diff --git a/.github/workflows/nuget-release.yml b/.github/workflows/nuget-release.yml index 74c0100..55c85ec 100644 --- a/.github/workflows/nuget-release.yml +++ b/.github/workflows/nuget-release.yml @@ -20,10 +20,10 @@ jobs: run: dotnet restore engine/Orbit.Engine/Orbit.Engine.csproj - name: Build - run: dotnet build engine/Orbit.Engine/Orbit.Engine.csproj + run: dotnet build engine/Orbit.Engine/Orbit.Engine.csproj -c Release - name: Pack - run: dotnet pack engine/Orbit.Engine/Orbit.Engine.csproj + run: dotnet pack engine/Orbit.Engine/Orbit.Engine.csproj -c Release - name: Push run: dotnet nuget push Orbit.Engine.${{ steps.get_version.outputs.version-without-v }}.nupkg -s https://api.nuget.org/v3/index.json -k ${{ secrets.NUGET_API_KEY }}