From aa7b522025e4b973a70f64ff6a292e4ff9bd4a66 Mon Sep 17 00:00:00 2001 From: Andras Csanyi Date: Sat, 27 Apr 2024 14:59:49 +0200 Subject: [PATCH 1/2] test --- BusinessLogic.Contracts/RelationResult.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/BusinessLogic.Contracts/RelationResult.cs b/BusinessLogic.Contracts/RelationResult.cs index 57a5e9f..7d2f643 100644 --- a/BusinessLogic.Contracts/RelationResult.cs +++ b/BusinessLogic.Contracts/RelationResult.cs @@ -1,5 +1,8 @@ namespace EncyclopediaGalactica.BusinessLogic.Contracts; +/// +/// +/// public class RelationResult { public long Id { get; set; } From 3cd1651c2ea5ec10c5542d143954ca3a46f57a5e Mon Sep 17 00:00:00 2001 From: Andras Csanyi Date: Sat, 27 Apr 2024 15:01:43 +0200 Subject: [PATCH 2/2] fix --- .github/workflows/release.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 74b6f31..97f9225 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -108,21 +108,21 @@ jobs: - name: Restore run: | - dotnet restore src/EG.Common/EG.Common.sln + dotnet restore Common.sln - name: Build run: | - dotnet build --configuration Release --no-restore src/EG.Common/EG.Common.sln + dotnet build --configuration Release --no-restore Common.sln - name: Test run: | - dotnet test --no-restore --verbosity normal src/EG.Common/EG.Common.sln + dotnet test --no-restore --verbosity normal Common.sln - name: Pack run: | - dotnet pack --no-restore --verbosity normal --include-symbols --include-source src/EG.Common/BusinessLogic.Contracts/BusinessLogic.Contracts.csproj + dotnet pack --no-restore --verbosity normal --include-symbols --include-source BusinessLogic.Contracts/BusinessLogic.Contracts.csproj - name: Publish run: | dotnet nuget add source --username Andras-Csanyi --password ${{ secrets.GITHUB_TOKEN }} --store-password-in-clear-text --name github "https://nuget.pkg.github.com/EncyclopediaGalactica/index.json" - dotnet nuget push "/home/runner/work/EncyclopediaGalactica/EncyclopediaGalactica/src/EG.Common/BusinessLogic.Contracts/bin/Release/EncyclopediaGalactica.BusinessLogic.Contracts.${{ env.EGVERSION }}.nupkg" --source "github" --api-key ${{ secrets.TOKEN_PUBLISH_NUGET }} --skip-duplicate + dotnet nuget push "/home/runner/work/EncyclopediaGalactica/Common/BusinessLogic.Contracts/bin/Release/EncyclopediaGalactica.BusinessLogic.Contracts.${{ env.EGVERSION }}.nupkg" --source "github" --api-key ${{ secrets.TOKEN_PUBLISH_NUGET }} --skip-duplicate