Skip to content

Commit 6799711

Browse files
authored
update publish GitHub workflow to use FAKE
1 parent dcea670 commit 6799711

1 file changed

Lines changed: 11 additions & 10 deletions

File tree

.github/workflows/publish.yml

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -11,20 +11,21 @@ jobs:
1111

1212
steps:
1313
- uses: actions/checkout@v2
14-
- name: Setup .NET Core
14+
- name: Setup .NET
1515
uses: actions/setup-dotnet@v1
1616
with:
17-
dotnet-version: 3.1.301
17+
dotnet-version: 5.0.202
1818
- name: Install tools
1919
run: dotnet tool restore
20-
- name: Install dependencies
21-
run: dotnet restore
22-
- name: Build
23-
run: dotnet build --configuration Release --no-restore
24-
- name: Test
25-
run: dotnet test --no-restore --verbosity normal
26-
- name: Run fsdocs
27-
run: dotnet fsdocs build --properties Configuration=Release
20+
21+
22+
- name: Build and Test and Docs using FAKE
23+
run: dotnet fake build
24+
25+
26+
27+
28+
2829
- name: Deploy
2930
uses: peaceiris/actions-gh-pages@v3
3031
with:

0 commit comments

Comments
 (0)