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