Skip to content

Commit 696e9f4

Browse files
authored
Update building-and-testing-net.md
Missing a '$'. Build will fail with `The workflow is not valid. .github/workflows/pipeline.yml (Line: 16, Col: 25): A mapping was not expected`
1 parent 49fa748 commit 696e9f4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

content/actions/guides/building-and-testing-net.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
- name: Setup .NET Core SDK ${{ matrix.dotnet }}
4545
uses: actions/setup-dotnet@v1.6.0
4646
with:
47-
dotnet-version: {{ matrix.dotnet-version }}
47+
dotnet-version: ${{ matrix.dotnet-version }}
4848
- name: Install dependencies
4949
run: dotnet restore
5050
- name: Build

0 commit comments

Comments
 (0)