chore: get pack working

This commit is contained in:
Stevan Freeborn
2026-03-30 17:11:20 -05:00
parent d45c47fcec
commit 7af787a990
2 changed files with 3 additions and 5 deletions
+1 -1
View File
@@ -50,7 +50,7 @@ jobs:
run: dotnet test --configuration Release --no-build --verbosity normal
- name: Pack
if: steps.version.outputs.VERSION
run: dotnet pack --configuration Release --no-build --output ./artifacts /p:PackageVersion=${{ steps.version.outputs.VERSION }}
run: dotnet pack --configuration Release --no-build --output ./artifacts
- name: Push to NuGet
if: steps.version.outputs.VERSION
run: dotnet nuget push ./artifacts/*.nupkg --source https://api.nuget.org/v3/index.json --api-key ${{ secrets.NUGET_API_KEY }}