Skip to content

Commit 2c6399b

Browse files
author
Petr Sramek
committed
fix
1 parent 4f00a8f commit 2c6399b

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/dotnet.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ concurrency: ${{ github.ref }}
1313

1414
jobs:
1515
build:
16-
name: Build with .NET $DOTNET_VERSION
16+
name: Build with .NET ${{ env.DOTNET_VERSION }}
1717
runs-on: ubuntu-latest
1818
steps:
1919
- uses: actions/checkout@v3
20-
- name: Install .NET $DOTNET_VERSION
20+
- name: Install .NET ${{ env.DOTNET_VERSION }}
2121
uses: actions/setup-dotnet@v4
2222
with:
2323
dotnet-version: $DOTNET_VERSION
@@ -32,15 +32,15 @@ jobs:
3232
**/obj/*
3333
3434
test:
35-
name: Test with .NET $DOTNET_VERSION
35+
name: Test with .NET ${{ env.DOTNET_VERSION }}
3636
needs: [build]
3737
runs-on: ubuntu-latest
3838
steps:
3939
- uses: actions/checkout@v3
4040
- name: Setup .NET $DOTNET_VERSION
4141
uses: actions/setup-dotnet@v4
4242
with:
43-
dotnet-version: $DOTNET_VERSION
43+
dotnet-version: ${{ env.DOTNET_VERSION }}
4444
- name: Test
4545
run: dotnet test ./tests/**/*Tests.csproj --configuration Release /p:Platform=AnyCPU --verbosity normal --settings unit-test.runsettings --logger trx --collect:"Code Coverage" --results-directory test-results
4646
- name: Upload
@@ -51,12 +51,12 @@ jobs:
5151
**/test-results/*
5252
5353
pack:
54-
name: Pack with .NET $DOTNET_VERSION
54+
name: Pack with .NET ${{ env.DOTNET_VERSION }}
5555
needs: [test]
5656
runs-on: ubuntu-latest
5757
steps:
5858
- uses: actions/checkout@v3
59-
- name: Install .NET $DOTNET_VERSION
59+
- name: Install .NET ${{ env.DOTNET_VERSION }}
6060
uses: actions/setup-dotnet@v4
6161
with:
6262
dotnet-version: $DOTNET_VERSION

0 commit comments

Comments
 (0)