From 2ee8c35f36c80d23c80949f645322fdd5e708dd0 Mon Sep 17 00:00:00 2001 From: chullybun Date: Thu, 26 Oct 2023 18:02:39 -0700 Subject: [PATCH] CI dotnet pack --- .github/workflows/CI.yml | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index cb1b194b3..1f7d598e7 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -169,17 +169,16 @@ jobs: - name: NuGet publish (local) run: | mkdir ./packages - dotnet nuget add source ./packages --name beef - dotnet nuget push ./tools/Beef.CodeGen.Core/bin/Debug/Beef.CodeGen.Core.*.nupkg --source beef --skip-duplicate - dotnet nuget push ./tools/Beef.Database.Core/bin/Debug/Beef.Database.Core.*.nupkg --source beef --skip-duplicate - dotnet nuget push ./tools/Beef.Database.SqlServer/bin/Debug/Database.SqlServer.*.nupkg --source beef --skip-duplicate - dotnet nuget push ./tools/Beef.Database.MySql/bin/Debug/Database.MySql.*.nupkg --source beef --skip-duplicate - dotnet nuget push ./tools/Beef.Beef.Test.NUnit/bin/Debug/Beef.Test.NUnit.*.nupkg --source beef --skip-duplicate + dotnet pack ./tools/Beef.CodeGen.Core --output ./packages --configuration Debug --no-build + dotnet pack ./tools/Beef.Database.Core --output ./packages --configuration Debug --no-build + dotnet pack ./tools/Beef.Database.SqlServer --output ./packages --configuration Debug --no-build + dotnet pack ./tools/Beef.Database.MySql --output ./packages --configuration Debug --no-build + dotnet pack ./tools/Beef.Test.NUnit --output ./packages --configuration Debug --no-build # Templates - - name: Templates/Beef.Template.Solution build and publish (local) - run: | - dotnet build ./Templates/Beef.Template.Solution - dotnet nuget push ./Templates/Beef.Template.Solution/bin/Debug/Beef.Template.Solution.*.nupkg --source beef --skip-duplicate + #- name: Templates/Beef.Template.Solution build and publish (local) + # run: | + # dotnet build ./Templates/Beef.Template.Solution + # dotnet nuget push ./Templates/Beef.Template.Solution/bin/Debug/Beef.Template.Solution.*.nupkg --source beef --skip-duplicate