From 696e9f4117596dfc691f756dd25a0d3c81384472 Mon Sep 17 00:00:00 2001 From: Patrick Huber <182398+patrickhuber@users.noreply.github.com> Date: Fri, 15 Jan 2021 23:12:18 -0500 Subject: [PATCH] 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` --- content/actions/guides/building-and-testing-net.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/actions/guides/building-and-testing-net.md b/content/actions/guides/building-and-testing-net.md index 20f1aa6aa734..15ac06773905 100644 --- a/content/actions/guides/building-and-testing-net.md +++ b/content/actions/guides/building-and-testing-net.md @@ -44,7 +44,7 @@ jobs: - name: Setup .NET Core SDK ${{ matrix.dotnet }} uses: actions/setup-dotnet@v1.6.0 with: - dotnet-version: {{ matrix.dotnet-version }} + dotnet-version: ${{ matrix.dotnet-version }} - name: Install dependencies run: dotnet restore - name: Build