Skip to content

Commit

Permalink
Add dotnet setup step in workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
fahminlb33 committed Oct 16, 2021
1 parent 4c6bad1 commit 1e6204f
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/canary.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,12 @@ jobs:
with:
submodules: 'recursive'

- name: Setup dotnet
uses: actions/setup-dotnet@v1
with:
dotnet-version: '6.0.x'
include-prerelease: true

- name: Run Cake Build
uses: cake-build/cake-action@v1
with:
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/stable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,12 @@ jobs:
with:
submodules: 'recursive'

- name: Setup dotnet
uses: actions/setup-dotnet@v1
with:
dotnet-version: '6.0.x'
include-prerelease: true

- name: Run Cake Build
uses: cake-build/cake-action@v1
with:
Expand Down

0 comments on commit 1e6204f

Please sign in to comment.