Skip to content

Commit

Permalink
Updated build pipelines to support .NET 8
Browse files Browse the repository at this point in the history
  • Loading branch information
mdwhitten authored and Michael Whitten committed Jun 6, 2024
1 parent 3e35430 commit 0ce42a0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/dotnet-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/finish-and-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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 }}
run: dotnet nuget push "${{ env.PACKAGES }}" --api-key ${{ secrets.NUGET_TOKEN }} -s ${{ env.NUGET_PACKAGE_SOURCE }}

0 comments on commit 0ce42a0

Please sign in to comment.