Skip to content

Commit

Permalink
ci: we need .net8 v2
Browse files Browse the repository at this point in the history
  • Loading branch information
punker76 committed Oct 24, 2024
1 parent 1139083 commit a60b264
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/dotnetcore.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,9 @@ jobs:
- name: Setup .NET Core
uses: actions/setup-dotnet@v4
with:
dotnet-version: '8.0.x'
dotnet-version: |
6.x
8.x
- name: Publish with dotnet
run: dotnet publish ./src/AvaloniaApp/AvaloniaApp.csproj -r linux-x64 -c Release -f net6.0
- name: Archive publish artifacts
Expand All @@ -32,7 +34,9 @@ jobs:
- name: Setup .NET Core
uses: actions/setup-dotnet@v4
with:
dotnet-version: '8.0.x'
dotnet-version: |
6.x
8.x
- name: Publish with dotnet
run: dotnet publish ./src/AvaloniaApp/AvaloniaApp.csproj -r win-x64 -c Release -f net6.0
- name: Archive publish artifacts
Expand All @@ -51,7 +55,9 @@ jobs:
- name: Setup .NET Core
uses: actions/setup-dotnet@v4
with:
dotnet-version: '8.0.x'
dotnet-version: |
6.x
8.x
- name: Publish with dotnet
run: dotnet publish ./src/AvaloniaApp/AvaloniaApp.csproj -r osx-x64 -c Release -f net6.0
- name: Archive publish artifacts
Expand Down
7 changes: 7 additions & 0 deletions global.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"sdk": {
"version": "8.0.403",
"rollForward": "feature",
"allowPrerelease": false
}
}

0 comments on commit a60b264

Please sign in to comment.