From 33cba4a0845c168de2564d00368a2457728adf97 Mon Sep 17 00:00:00 2001 From: movingsam Date: Thu, 26 Feb 2026 12:59:58 +0800 Subject: [PATCH] Update NuGet CI for org --- .gitea/workflows/nuget.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/nuget.yml b/.gitea/workflows/nuget.yml index ede9ae4..451fca5 100644 --- a/.gitea/workflows/nuget.yml +++ b/.gitea/workflows/nuget.yml @@ -23,15 +23,15 @@ jobs: - name: Pack Domain if: startsWith(github.ref, "refs/tags/v") - run: dotnet pack fengling-platform/Fengling.Platform.Domain/Fengling.Platform.Domain.csproj -c Release -o ./packages + run: dotnet pack Fengling.Platform.Domain/Fengling.Platform.Domain.csproj -c Release -o ./packages - name: Pack Infrastructure if: startsWith(github.ref, "refs/tags/v") - run: dotnet pack fengling-platform/Fengling.Platform.Infrastructure/Fengling.Platform.Infrastructure.csproj -c Release -o ./packages + run: dotnet pack Fengling.Platform.Infrastructure/Fengling.Platform.Infrastructure.csproj -c Release -o ./packages - name: Push to Gitea if: startsWith(github.ref, "refs/tags/v") run: | for pkg in ./packages/*.nupkg; do - dotnet nuget push "$pkg" --source "$GITEA_URL/gitea_registry/movingsam/go/__index" --skip-duplicate + dotnet nuget push "$pkg" --source "$GITEA_URL/gitea_registry/fengling/go/__index" --skip-duplicate done \ No newline at end of file