Skip to content

Commit

Permalink
Migrate to .net 8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
RolfHuisman committed Oct 16, 2024
1 parent 8187f7f commit 912445e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,10 @@ jobs:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
# https://stackoverflow.com/questions/57889719/how-to-push-nuget-package-in-github-actions
- name: "Setup .NET Core @ Latest"
uses: actions/setup-dotnet@v1
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: '3.1.101' #https://github.com/NuGet/Home/issues/3406 Went to a patch version that seems to work
source-url: https://nuget.pkg.github.com/qsharp-community/index.json
dotnet-version: '8.0.x'
env:
NUGET_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ jobs:

steps:
- uses: actions/checkout@v2
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 3.1.101
dotnet-version: '8.0.x'
- name: Install dependencies
run: dotnet restore
- name: Build
Expand Down

0 comments on commit 912445e

Please sign in to comment.