Skip to content

Commit

Permalink
[AMEND] Multiple .Net SDKs
Browse files Browse the repository at this point in the history
  • Loading branch information
NikRimington committed Dec 17, 2023
1 parent e7309dc commit aff24fc
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,21 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v3

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

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

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

- name: Build project
run: dotnet build src\HC.PageNotFoundManager\HC.PageNotFoundManager.csproj --configuration Release

Expand Down

0 comments on commit aff24fc

Please sign in to comment.