Skip to content

Commit

Permalink
fix(ci): use .NET 9
Browse files Browse the repository at this point in the history
  • Loading branch information
MeikelLP committed Nov 20, 2024
1 parent b4d6420 commit 175a64b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/dotnet-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,17 +48,17 @@ jobs:
- uses: actions/checkout@v3
with:
fetch-depth: '0'
- name: Setup .NET Core SDK 8
- name: Setup .NET Core SDK 9
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
dotnet-version: 9.0.x
- name: Build
run: dotnet publish -r ${{ matrix.os }} --verbosity minimal -p DebugType=None -p DebugSymbols=false -p PublishSingleFile=true --self-contained src/Executables/Single/
- name: Archive build artifact
uses: actions/upload-artifact@v4
with:
name: QuantumCore Single ${{ matrix.os }}
path: src/Executables/Single/bin/Release/net8.0/${{ matrix.os }}/publish
path: src/Executables/Single/bin/Release/net9.0/${{ matrix.os }}/publish
deploy:
needs:
- test
Expand Down

0 comments on commit 175a64b

Please sign in to comment.