From d6004ce18bdb4641fec8d84c683b2adb850c3dd5 Mon Sep 17 00:00:00 2001 From: Danny McCormick Date: Thu, 1 Aug 2019 16:40:13 -0400 Subject: [PATCH] Sdk doc nits --- README.md | 4 ++-- action.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index edce045..1f0aa97 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ This action sets up a dotnet environment for use in actions by: -- optionally downloading and caching a version of dotnet by version and adding to PATH +- optionally downloading and caching a version of dotnet by SDK version and adding to PATH - registering problem matchers for error output # Usage @@ -15,7 +15,7 @@ steps: - uses: actions/checkout@master - uses: actions/setup-dotnet@v1 with: - version: '2.2.103' // Version to use. + version: '2.2.103' // SDK Version to use. - run: dotnet build ``` diff --git a/action.yml b/action.yml index e187aef..e573842 100644 --- a/action.yml +++ b/action.yml @@ -3,7 +3,7 @@ description: 'Setup a Dotnet environment and add it to the PATH, additionally pr author: 'GitHub' inputs: version: - description: 'Version to use. E.g. 2.2.104' + description: 'SDK version to use. E.g. 2.2.104' runs: using: 'node12' main: 'lib/setup-dotnet.js'