mirror of
https://github.com/tonytins/cstdotnet.git
synced 2025-03-15 06:01:25 +00:00
Target .NET 8 in Github Actions, hopefully
This commit is contained in:
parent
a228081732
commit
5f6e6c1935
2 changed files with 4 additions and 2 deletions
3
.github/workflows/dotnet.yml
vendored
3
.github/workflows/dotnet.yml
vendored
|
@ -14,7 +14,7 @@ jobs:
|
|||
NUGET_PACKAGES: ${{ github.workspace }}/.nuget/packages
|
||||
strategy:
|
||||
matrix:
|
||||
dotnet: ["6.0.x"]
|
||||
dotnet: ["8.0.x"]
|
||||
platforms: ["ubuntu-latest", "windows-latest", "macos-latest"]
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
|
@ -22,6 +22,7 @@ jobs:
|
|||
uses: actions/setup-dotnet@v3
|
||||
with:
|
||||
dotnet-version: ${{ matrix.dotnet }}
|
||||
dotnet-quality: 'preview'
|
||||
- name: Install dependencies
|
||||
run: dotnet restore
|
||||
- name: Build
|
||||
|
|
3
.github/workflows/publish.yml
vendored
3
.github/workflows/publish.yml
vendored
|
@ -14,7 +14,8 @@ jobs:
|
|||
- name: Setup dotnet
|
||||
uses: actions/setup-dotnet@v3
|
||||
with:
|
||||
dotnet-version: "6.0.x"
|
||||
dotnet-version: "8.0.x"
|
||||
dotnet-quality: 'preview'
|
||||
- name: Install dependencies
|
||||
run: dotnet restore
|
||||
- name: Package
|
||||
|
|
Loading…
Add table
Reference in a new issue