Skip to content

Commit

Permalink
Adding support for ASP.NET Core 6
Browse files Browse the repository at this point in the history
  • Loading branch information
tpeczek committed Feb 5, 2022
1 parent addc677 commit 47abf2c
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,6 @@ jobs:
- name: Extract VERSION
run: echo "VERSION=${GITHUB_REF/refs\/tags\/v/}" >> $GITHUB_ENV
shell: bash
- name: Setup .NET Core 2.1 SDK
uses: actions/setup-dotnet@v1
with:
dotnet-version: '2.1.x'
- name: Setup .NET Core 3.1 SDK
uses: actions/setup-dotnet@v1
with:
Expand All @@ -24,6 +20,10 @@ jobs:
uses: actions/setup-dotnet@v1
with:
dotnet-version: '5.0.x'
- name: Setup .NET 6.0 SDK
uses: actions/setup-dotnet@v1
with:
dotnet-version: '6.0.x'
- name: Restore
run: dotnet restore
- name: Build
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,6 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup .NET Core 2.1 SDK
uses: actions/setup-dotnet@v1
with:
dotnet-version: '2.1.x'
- name: Setup .NET Core 3.1 SDK
uses: actions/setup-dotnet@v1
with:
Expand All @@ -24,6 +20,10 @@ jobs:
uses: actions/setup-dotnet@v1
with:
dotnet-version: '5.0.x'
- name: Setup .NET 6.0 SDK
uses: actions/setup-dotnet@v1
with:
dotnet-version: '6.0.x'
- name: Restore
run: dotnet restore
- name: Build
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,6 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup .NET Core 2.1 SDK
uses: actions/setup-dotnet@v1
with:
dotnet-version: '2.1.x'
- name: Setup .NET Core 3.1 SDK
uses: actions/setup-dotnet@v1
with:
Expand All @@ -18,6 +14,10 @@ jobs:
uses: actions/setup-dotnet@v1
with:
dotnet-version: '5.0.x'
- name: Setup .NET 6.0 SDK
uses: actions/setup-dotnet@v1
with:
dotnet-version: '6.0.x'
- name: Restore
run: dotnet restore
- name: Build
Expand Down

0 comments on commit 47abf2c

Please sign in to comment.