Skip to content

Commit

Permalink
Merge pull request #46 from 8T4/release/v6.2.x
Browse files Browse the repository at this point in the history
update pipe to support other .net versions
  • Loading branch information
yanjustino authored Mar 1, 2024
2 parents 899db51 + 8587136 commit 7b986f7
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,21 @@ jobs:
- name: Release CLI version
run: echo ${{env.CLI_VERSION}}

- name: Setup .NET
- name: Setup .NET Core 6.0.x
uses: actions/setup-dotnet@v1
with:
dotnet-version: 6.0.x

- name: Setup .NET Core 7.0.x
uses: actions/setup-dotnet@v1
with:
dotnet-version: 7.0.x

- name: Setup .NET Core 8.0.x
uses: actions/setup-dotnet@v1
with:
dotnet-version: 8.0.x

- name: Restore dependencies
run: dotnet restore

Expand Down

0 comments on commit 7b986f7

Please sign in to comment.