fix: publish Godot Installer as content-only package
Publish UPM package / publish (push) Failing after 2s
Publish NuGet packages / publish (push) Successful in 28s

This commit is contained in:
2026-09-05 04:24:17 +08:00
parent 907dda3c8e
commit 3650f9c08b
3 changed files with 10 additions and 7 deletions
+1 -1
View File
@@ -114,7 +114,7 @@ jobs:
mkdir -p packages
for project in "${projects[@]}"; do
dotnet restore "$project" --configfile NuGet.Config
dotnet pack "$project" --configuration Release --no-restore --output "$PWD/packages" --include-symbols --include-source
dotnet pack "$project" --configuration Release --no-restore --output "$PWD/packages"
done
find packages -maxdepth 1 -name '*.nupkg' -type f | grep -q .
dotnet nuget push 'packages/*.nupkg' --api-key "$NUGET_AUTH_TOKEN" --source https://git.crash.work/api/packages/ShrinkSDK/nuget/index.json --skip-duplicate