Skip to content

Commit

Permalink
adding .NET 8 to Github workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremydmiller committed Nov 21, 2023
1 parent de70624 commit 689f843
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,11 @@ jobs:
uses: actions/setup-dotnet@v1
with:
dotnet-version: 7.0.x

- name: Setup .NET 8
uses: actions/setup-dotnet@v1
with:
dotnet-version: 8.0.x

- name: Install Node.js
uses: actions/setup-node@v1
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,11 @@ jobs:
with:
dotnet-version: 7.0.x

- name: Setup .NET 8
uses: actions/setup-dotnet@v1
with:
dotnet-version: 8.0.x

- name: Checkout
uses: actions/checkout@v3
with:
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/publish_nugets.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,11 @@ jobs:
with:
dotnet-version: 7.0.x

- name: Setup .NET 8
uses: actions/setup-dotnet@v1
with:
dotnet-version: 8.0.x

- name: Run Pack
run: ./build.sh --no-color pack
shell: bash
Expand Down
3 changes: 3 additions & 0 deletions wolverine.sln
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,9 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".SolutionItems", ".Solution
mdsnippets.json = mdsnippets.json
README.md = README.md
docker-compose.yml = docker-compose.yml
.github\workflows\publish_nugets.yml = .github\workflows\publish_nugets.yml
.github\workflows\dotnet.yml = .github\workflows\dotnet.yml
.github\workflows\docs.yml = .github\workflows\docs.yml
EndProjectSection
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Wolverine.MemoryPack", "src\Extensions\Wolverine.MemoryPack\Wolverine.MemoryPack.csproj", "{469A2C91-64B4-439B-9097-05499770FFB3}"
Expand Down

0 comments on commit 689f843

Please sign in to comment.