Skip to content

Commit

Permalink
Add required dot net core versions to the workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
EdwardCooke committed Dec 1, 2022
1 parent 48466e7 commit 78b1ab3
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/create-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,22 @@ jobs:
fetch-depth: 0
ref: ${{ github.event.inputs.ref }}

# Make sure the required versions of dotnet core on the server
- name: Install dotnet 3.1
uses: actions/setup-dotnet@v3
with:
dotnet-version: 3.1.x

- name: Install dotnet 6.0
uses: actions/setup-dotnet@v3
with:
dotnet-version: 6.0.x

- name: Install dotnet 7.0
uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.0.x

- name: Install GitVersion.Tool
run: dotnet tool install --global GitVersion.Tool

Expand Down

0 comments on commit 78b1ab3

Please sign in to comment.