From d8cff32ae5a509f8bc6acec0e998dda908da7b40 Mon Sep 17 00:00:00 2001 From: Maxim Lobanov Date: Wed, 5 May 2021 16:45:32 +0300 Subject: [PATCH] Update README.md --- README.md | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 18e2c06..f794be5 100644 --- a/README.md +++ b/README.md @@ -23,13 +23,23 @@ See [action.yml](action.yml) Basic: ```yaml steps: -- uses: actions/checkout@main +- uses: actions/checkout@v2 - uses: actions/setup-dotnet@v1 with: dotnet-version: '3.1.x' # SDK Version to use; x will use the latest version of the 3.1 channel - run: dotnet build ``` +Preview version: +```yml +steps: +- uses: actions@checkout@v2 + with: + dotnet-version: '6.0.x' + include-prerelease: true +- run: dotnet build +``` + Matrix Testing: ```yaml jobs: