Skip to content

Commit

Permalink
update pipe to support other .net versions
Browse files Browse the repository at this point in the history
  • Loading branch information
yanjustino committed Mar 1, 2024
1 parent d904df1 commit 8587136
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 8587136

Please sign in to comment.