Skip to content

Commit

Permalink
feat: Relation result #1
Browse files Browse the repository at this point in the history
feat: Relation result
  • Loading branch information
Andras-Csanyi authored Apr 27, 2024
2 parents 05dcf94 + 3cd1651 commit 9b9709c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
3 changes: 3 additions & 0 deletions BusinessLogic.Contracts/RelationResult.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
namespace EncyclopediaGalactica.BusinessLogic.Contracts;

/// <summary>
///
/// </summary>
public class RelationResult
{
public long Id { get; set; }
Expand Down

0 comments on commit 9b9709c

Please sign in to comment.