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