From 175a64b46da91a4e3ebf13347edb91dc053090af Mon Sep 17 00:00:00 2001 From: Meikel Philipp Date: Wed, 20 Nov 2024 08:20:53 +0100 Subject: [PATCH] fix(ci): use .NET 9 --- .github/workflows/dotnet-pipeline.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/dotnet-pipeline.yml b/.github/workflows/dotnet-pipeline.yml index a6c5852d..74b62645 100644 --- a/.github/workflows/dotnet-pipeline.yml +++ b/.github/workflows/dotnet-pipeline.yml @@ -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