From 0ce42a0816995b187a5d9c7f407f7c821f5632f8 Mon Sep 17 00:00:00 2001 From: Michael Whitten <47825680+mdwhitten@users.noreply.github.com> Date: Thu, 6 Jun 2024 09:58:20 -0500 Subject: [PATCH] Updated build pipelines to support .NET 8 --- .github/workflows/dotnet-build.yml | 2 +- .github/workflows/finish-and-release.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/dotnet-build.yml b/.github/workflows/dotnet-build.yml index 61901de..f05fd45 100644 --- a/.github/workflows/dotnet-build.yml +++ b/.github/workflows/dotnet-build.yml @@ -22,7 +22,7 @@ jobs: - name: Setup .NET uses: actions/setup-dotnet@v1 with: - dotnet-version: 5.0.x + dotnet-version: 8.0.x - name: Restore dependencies run: dotnet restore $env:SOURCE - name: Build diff --git a/.github/workflows/finish-and-release.yml b/.github/workflows/finish-and-release.yml index e4c7715..e9735f5 100644 --- a/.github/workflows/finish-and-release.yml +++ b/.github/workflows/finish-and-release.yml @@ -38,7 +38,7 @@ jobs: - name: Setup .NET uses: actions/setup-dotnet@v1 with: - dotnet-version: 5.0.x + dotnet-version: 8.0.x - name: Restore dependencies run: dotnet restore $env:SOURCE - name: Build @@ -52,4 +52,4 @@ jobs: - name: Push to Nuget env: PACKAGES: ${{ format('{0}\MicrowaveNetworks\bin\Release\*.nupkg', env.SOURCE) }} - run: dotnet nuget push "${{ env.PACKAGES }}" --api-key ${{ secrets.NUGET_TOKEN }} -s ${{ env.NUGET_PACKAGE_SOURCE }} \ No newline at end of file + run: dotnet nuget push "${{ env.PACKAGES }}" --api-key ${{ secrets.NUGET_TOKEN }} -s ${{ env.NUGET_PACKAGE_SOURCE }}