Skip to content

Commit f48f37f

Browse files
authored
Update to the Compiler 41.0.1 and Fantomas 4.6.5 (#42)
1 parent 1dcf047 commit f48f37f

File tree

15 files changed

+784
-483
lines changed

15 files changed

+784
-483
lines changed

.config/dotnet-tools.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"isRoot": true,
44
"tools": {
55
"paket": {
6-
"version": "5.243.0",
6+
"version": "6.2.1",
77
"commands": [
88
"paket"
99
]

.github/workflows/build.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
2+
13
name: Build
24

35
on: [push, pull_request]
@@ -8,7 +10,7 @@ jobs:
810
strategy:
911
matrix:
1012
os: [ubuntu-latest, windows-latest, macOS-latest]
11-
dotnet: [5.0.100]
13+
dotnet: [6.0.200]
1214
runs-on: ${{ matrix.os }}
1315

1416
steps:

.github/workflows/release.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,17 @@
1-
name: Release
1+
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
22

3+
name: Release
34

45
on:
56
push:
6-
tags:
7+
tags:
78
- '*'
89

910
jobs:
1011
release:
1112
strategy:
1213
matrix:
13-
dotnet: [5.0.100]
14+
dotnet: [6.0.200]
1415

1516
runs-on: ubuntu-20.04
1617

@@ -36,7 +37,7 @@ jobs:
3637
- name: Restore tools
3738
run: dotnet tool restore
3839
- name: Run build
39-
run: dotnet build -c Release /p:Version=${{ steps.tag_name.outputs.current_version }}
40+
run: dotnet build -c Release /p:Version=${{ steps.tag_name.outputs.current_version }}
4041
- name: Create package
4142
run: dotnet pack -c Release /p:Version=${{ steps.tag_name.outputs.current_version }} /p:PackageReleaseNotes="${{ steps.changelog_reader.outputs.changes }}" -o ./bin
4243
- name: Create Release
@@ -53,7 +54,7 @@ jobs:
5354
files: |
5455
./bin/FsAst.*.nupkg
5556
- name: Publish package to nuget
56-
env:
57+
env:
5758
NUGET_KEY: ${{ secrets.NUGET_KEY }}
5859
run: dotnet nuget push ./bin/FsAst.*.nupkg --api-key $NUGET_KEY --source https://api.nuget.org/v3/index.json
5960

0 commit comments

Comments
 (0)