[WORKFLOW] Updated gitea instance url & added packing for logging libs
All checks were successful
Build C# Library / build (push) Successful in 1m17s

This commit is contained in:
max
2025-08-02 16:10:48 +02:00
parent 525d82ca27
commit e4690dfe22

View File

@@ -26,8 +26,14 @@ jobs:
- name: Build library - name: Build library
run: dotnet build --configuration Release run: dotnet build --configuration Release
- name: Pack - name: Pack DotBased
run: dotnet pack ./DotBased/DotBased.csproj --configuration Release -o ./artifacts 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 - name: Publish library to Gitea NuGet
run: | run: |
@@ -36,7 +42,7 @@ jobs:
--password $GITEA_TOKEN \ --password $GITEA_TOKEN \
--store-password-in-clear-text \ --store-password-in-clear-text \
--name gitea \ --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 dotnet nuget push ./artifacts/*.nupkg --source gitea --skip-duplicate
env: env: