Skip to content
This repository has been archived by the owner on May 31, 2024. It is now read-only.

Commit

Permalink
consistent csproj file var name
Browse files Browse the repository at this point in the history
  • Loading branch information
kurmann committed Apr 26, 2024
1 parent 15ebfdf commit 89de3ea
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions templates/entities-repo/.github/workflows/draft_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest

env:
PROJECT_FILE: src/ProjectName/ProjectName.csproj
CSPROJ_FILE: src/ProjectName/ProjectName.csproj
DOTNET_VERSION: '8.0.x'

steps:
Expand All @@ -27,10 +27,10 @@ jobs:
dotnet-version: ${{ env.DOTNET_VERSION }}

- name: Install dependencies
run: dotnet restore ${{ env.PROJECT_FILE }}
run: dotnet restore ${{ env.CSPROJ_FILE }}

- name: Test
run: dotnet test ${{ env.PROJECT_FILE }}
run: dotnet test ${{ env.CSPROJ_FILE }}

release_draft:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 89de3ea

Please sign in to comment.