From e4690dfe222d8b4770176158538de51eb373cb2f Mon Sep 17 00:00:00 2001 From: max Date: Sat, 2 Aug 2025 16:10:48 +0200 Subject: [PATCH] [WORKFLOW] Updated gitea instance url & added packing for logging libs --- .gitea/workflows/BuildLibrary.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/BuildLibrary.yml b/.gitea/workflows/BuildLibrary.yml index 9b0353f..f26a6ad 100644 --- a/.gitea/workflows/BuildLibrary.yml +++ b/.gitea/workflows/BuildLibrary.yml @@ -26,8 +26,14 @@ jobs: - name: Build library run: dotnet build --configuration Release - - name: Pack + - name: Pack DotBased run: dotnet pack ./DotBased/DotBased.csproj --configuration Release -o ./artifacts + + - name: Pack DotBased.Logging.MEL + run: dotnet pack ./DotBased.Logging.MEL/DotBased.Logging.MEL.csproj --configuration Release -o ./artifacts + + - name: Pack DotBased.Logging.Serilog + run: dotnet pack ./DotBased.Logging.Serilog/DotBased.Logging.Serilog.csproj --configuration Release -o ./artifacts - name: Publish library to Gitea NuGet run: | @@ -36,7 +42,7 @@ jobs: --password $GITEA_TOKEN \ --store-password-in-clear-text \ --name gitea \ - https://gitea.netzbyte.com/api/packages/$GITEA_USER/nuget/index.json + https://git.netzbyte.com/api/packages/$GITEA_USER/nuget/index.json dotnet nuget push ./artifacts/*.nupkg --source gitea --skip-duplicate env: