Skip to content

Commit 64d8f36

Browse files
authored
Merge pull request #147 from dsyme/s2
simplify build
2 parents e6bf47a + 144abc4 commit 64d8f36

15 files changed

Lines changed: 21 additions & 1448 deletions

File tree

.config/dotnet-tools.json

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -3,22 +3,10 @@
33
"isRoot": true,
44
"tools": {
55
"fsharp.formatting.commandtool": {
6-
"version": "11.4.1",
6+
"version": "11.4.3",
77
"commands": [
88
"fsdocs"
99
]
10-
},
11-
"paket": {
12-
"version": "6.0.0-rc001",
13-
"commands": [
14-
"paket"
15-
]
16-
},
17-
"fake-cli": {
18-
"version": "5.20.4",
19-
"commands": [
20-
"fake"
21-
]
2210
}
2311
}
2412
}

.github/workflows/publish.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: Build and Publish
22
on:
33
push:
4-
branches: [ master ]
4+
branches: [ main ]
55
jobs:
66
build:
77
runs-on: ubuntu-latest
@@ -14,7 +14,9 @@ jobs:
1414
- name: Install tools
1515
run: dotnet tool restore
1616
- name: Build and Test and Docs using FAKE
17-
run: dotnet fake build
17+
run: dotnet test -c Release
18+
- name: Pack
19+
run: dotnet pack -c Release
1820
- name: Deploy
1921
uses: peaceiris/actions-gh-pages@v3
2022
with:

.github/workflows/pull-request.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,13 @@ name: Build and Test Pull Request
22

33
on:
44
pull_request:
5-
branches: [ master ]
5+
branches: [ main ]
66

77
jobs:
88
build:
99
runs-on: ubuntu-latest
1010
steps:
1111
- uses: actions/checkout@v2
12-
- name: Setup .NET
13-
uses: actions/setup-dotnet@v1
14-
with:
15-
dotnet-version: '3.1.x'
1612
- name: Setup .NET
1713
uses: actions/setup-dotnet@v1
1814
with:

.paket/Paket.Restore.targets

Lines changed: 0 additions & 494 deletions
This file was deleted.

build.cmd

Lines changed: 0 additions & 13 deletions
This file was deleted.

build.fsx

Lines changed: 0 additions & 145 deletions
This file was deleted.

build.sh

Lines changed: 0 additions & 12 deletions
This file was deleted.

paket.dependencies

Lines changed: 0 additions & 44 deletions
This file was deleted.

0 commit comments

Comments
 (0)