Use dotnet-version (#16)

This commit is contained in:
Danny McCormick
2019-08-13 16:05:52 -04:00
committed by GitHub
parent 10a142b9ea
commit fe9489df58
4 changed files with 14 additions and 5 deletions

View File

@ -19,7 +19,7 @@ steps:
- uses: actions/checkout@master
- uses: actions/setup-dotnet@v1
with:
version: '2.2.103' // SDK Version to use.
dotnet-version: '2.2.103' // SDK Version to use.
- run: dotnet build <my project>
```
@ -37,7 +37,7 @@ jobs:
- name: Setup dotnet
uses: actions/setup-dotnet@v1
with:
version: ${{ matrix.dotnet }}
dotnet-version: ${{ matrix.dotnet }}
- run: dotnet build <my project>
```