Skip to content

Commit

Permalink
Sdk doc nits
Browse files Browse the repository at this point in the history
  • Loading branch information
Danny McCormick committed Aug 1, 2019
1 parent 99b3249 commit d6004ce
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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 <my project>
```
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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'

0 comments on commit d6004ce

Please sign in to comment.