Skip to content

Commit 6c62c0b

Browse files
author
Petr Sramek
committed
fix
1 parent 597ba04 commit 6c62c0b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/dotnet.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,20 +7,20 @@ on:
77
branches: [ 'main' ]
88

99
env:
10-
DOTNET_VERSION: ${{ vars.DOTNET_VERSION }}
10+
dotnet_version: ${{ vars.DOTNET_VERSION }}
1111

1212
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 ${{ env.DOTNET_VERSION }}
20+
- name: Install .NET ${{ env.dotnet_version }}
2121
uses: actions/setup-dotnet@v4
2222
with:
23-
dotnet-version: ${{ env.DOTNET_VERSION }}
23+
dotnet-version: ${{ env.dotnet_version }}
2424
- name: Build
2525
run: dotnet build ./src/**/*.csproj --configuration Release /p:Platform=AnyCPU
2626
- name: Upload

0 commit comments

Comments
 (0)