Skip to content

Commit

Permalink
.NET 8 in actions (#131)
Browse files Browse the repository at this point in the history
* Update CI.yml

* Update Release.yml

* Update CI.yml

* Update Release.yml
  • Loading branch information
langsamu authored Dec 20, 2024
1 parent 6f20093 commit 6297262
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 7.0.x
dotnet-version: 8
include-prerelease: true

- name: Install dependencies
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/Release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ jobs:
- name: GitVersion
run: dotnet dotnet-gitversion /output buildserver /updateprojectfiles

- name: Setup .NET 7
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 7.0.x
dotnet-version: 8
include-prerelease: true

- name: Install dependencies
Expand All @@ -46,4 +46,4 @@ jobs:
- name: Publish
env:
NugetKey: ${{ secrets.NuGetKey }}
run: dotnet nuget push (Get-ChildItem *.nupkg -Recurse) --api-key $Env:NuGetKey --source https://api.nuget.org/v3/index.json
run: dotnet nuget push (Get-ChildItem *.nupkg -Recurse) --api-key $Env:NuGetKey --source https://api.nuget.org/v3/index.json

0 comments on commit 6297262

Please sign in to comment.