Skip to content

Commit 1cf6b6b

Browse files
committed
More updates
1 parent c8052f4 commit 1cf6b6b

File tree

3 files changed

+12
-7
lines changed

3 files changed

+12
-7
lines changed

.github/workflows/release.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,28 +9,28 @@ jobs:
99
release:
1010
strategy:
1111
matrix:
12-
dotnet: [6.0.100]
12+
dotnet: [8.0.100]
1313

14-
runs-on: ubuntu-20.04
14+
runs-on: ubuntu-24.04
1515

1616
steps:
1717
- uses: actions/checkout@v2
1818
with:
1919
ref: ${{ github.head_ref }}
2020
- name: Setup .NET Core
21-
uses: actions/setup-dotnet@v1
21+
uses: actions/setup-dotnet@4.3
2222
with:
2323
dotnet-version: ${{ matrix.dotnet }}
2424
- name: Restore tools
2525
run: dotnet tool restore
26-
- name: Paket restore
27-
run: dotnet paket restore
26+
- name: NuGet restore
27+
run: dotnet restore Fornax.sln
2828
- name: build and push packages
2929
run: dotnet run Push
3030
env:
3131
nuget-key: ${{ secrets.NUGET_KEY }}
3232
- name: Upload a Build Artifact
33-
uses: actions/upload-artifact@v2.3.1
33+
uses: actions/upload-artifact@v4
3434
with:
3535
path: out
3636
- name: Create Release

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
## 0.16.0-beta001 - 08.07.2025
4+
5+
### Changed
6+
* [Update to .NET 8](https://github.com/ionide/Fornax/pull/127) (thanks @Numpsy!)
7+
38
## 0.15.1 - 07.03.2023
49

510
### Fixed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ Thank you for contributing!
204204

205205
## Build process
206206

207-
* You need [.NET 6.0 SDK](https://dotnet.microsoft.com/download/dotnet/6.0)
207+
* You need [.NET 8.0 SDK](https://dotnet.microsoft.com/download/dotnet/8.0)
208208
* Run `dotnet tool restore` to restore the .NET 6 local tools defined at .config/dotnet-tools.json
209209
* To build the project run `dotnet run` (this will run the `build.fsproj` project that contains the FAKE build pipeline.)
210210
* To run unit tests run `dotnet run Test`

0 commit comments

Comments
 (0)