We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c9a750f commit 82058f9Copy full SHA for 82058f9
.github/workflows/build+test+deploy.yml
@@ -114,7 +114,9 @@ jobs:
114
- name: Restore dependencies
115
run: dotnet restore
116
- name: Run Fornax
117
- run: make docs
+ run: |
118
+ cd docs
119
+ make
120
- name: Deploy (if tag)
121
if: startsWith(github.ref, 'refs/tags/')
122
uses: peaceiris/actions-gh-pages@v3
Makefile
@@ -7,9 +7,3 @@ check:
7
8
selfcheck:
9
dotnet fsi build.fsx --target SelfCheck
10
-
11
-# add docs to .PHONY target because docs directory already exists and Make considers it "up to date" and skips execution.
12
-.PHONY: docs
13
-docs:
14
- dotnet fsi build.fsx --target Docs
15
0 commit comments