From 664fbdedde162783afd7e96afe476aee7936a662 Mon Sep 17 00:00:00 2001 From: Alexander Horner <33007665+alexhorner@users.noreply.github.com> Date: Sat, 14 Sep 2019 13:28:29 +0100 Subject: [PATCH] Fix MD format error --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index ad68532..7258bd7 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ This action sets up a dotnet environment for use in actions by: See [action.yml](action.yml) -##Basic: +## Basic: ```yaml steps: - uses: actions/checkout@master @@ -23,7 +23,7 @@ steps: - run: dotnet build ``` -##Matrix Testing: +## Matrix Testing: ```yaml jobs: build: @@ -41,7 +41,7 @@ jobs: - run: dotnet build ``` -##Publishing a standalone copy for Release execution (include all dependencies): +## Publishing a standalone copy for Release execution (include all dependencies): ```yaml steps: - uses: actions/checkout@v1 @@ -52,7 +52,7 @@ steps: run: dotnet publish --configuration Release ``` -##Publishing a standalone copy for Release execution (include all dependencies with specified NuGet sources): +## Publishing a standalone copy for Release execution (include all dependencies with specified NuGet sources): ```yaml steps: - uses: actions/checkout@v1 @@ -62,7 +62,7 @@ steps: - name: Build + Publish with dotnet run: dotnet publish --configuration Release ``` -###Your nuget.config may look like so, just add your sources under the default source +### Your nuget.config may look like so, just add your sources under the default source ```xml