From ba2659762a78e591a10d31be39709b7cdebeeaef Mon Sep 17 00:00:00 2001 From: Frederik Prijck Date: Tue, 29 Aug 2023 14:59:16 +0200 Subject: [PATCH] Pack every project separatly (#652) --- .github/workflows/publish.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index e51b6ba02..bf99890a8 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -31,7 +31,9 @@ jobs: with: dotnet-version: 6.0.x - - run: dotnet pack src/**/*.csproj --configuration Release --output ${{ env.NuGetDirectory }} + - run: dotnet pack src/Auth0.Core/Auth0.Core.csproj --configuration Release --output ${{ env.NuGetDirectory }} + - run: dotnet pack src/Auth0.AuthenticationApi/Auth0.AuthenticationApi.csproj --configuration Release --output ${{ env.NuGetDirectory }} + - run: dotnet pack src/Auth0.ManagementApi/Auth0.ManagementApi.csproj --configuration Release --output ${{ env.NuGetDirectory }} - uses: actions/upload-artifact@v3 with: