From 613b77df043fa072c502a66d7dd5841c317eeb81 Mon Sep 17 00:00:00 2001 From: Patrick Kurmann Date: Fri, 26 Apr 2024 08:53:57 +0200 Subject: [PATCH] Update CSPROJ_FILE path in workflows to src/Entities/Entities.csproj --- templates/entities-repo/.github/workflows/draft_release.yml | 2 +- templates/entities-repo/.github/workflows/publish_package.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/entities-repo/.github/workflows/draft_release.yml b/templates/entities-repo/.github/workflows/draft_release.yml index ed29a85..ac36b68 100644 --- a/templates/entities-repo/.github/workflows/draft_release.yml +++ b/templates/entities-repo/.github/workflows/draft_release.yml @@ -15,7 +15,7 @@ jobs: runs-on: ubuntu-latest env: - CSPROJ_FILE: src/ProjectName/ProjectName.csproj + CSPROJ_FILE: src/Entities/Entities.csproj DOTNET_VERSION: '8.0.x' steps: diff --git a/templates/entities-repo/.github/workflows/publish_package.yml b/templates/entities-repo/.github/workflows/publish_package.yml index 3e83cc1..507aa1a 100644 --- a/templates/entities-repo/.github/workflows/publish_package.yml +++ b/templates/entities-repo/.github/workflows/publish_package.yml @@ -11,7 +11,7 @@ permissions: pull-requests: read env: - CSPROJ_FILE: src/ProjectName/ProjectName.csproj + CSPROJ_FILE: src/Entities/Entities.csproj DOTNET_VERSION: '8.0.x' jobs: