Skip to content

Commit 82058f9

Browse files
committed
WIP: move docs target to a Makefile inside 'docs'
1 parent c9a750f commit 82058f9

File tree

2 files changed

+3
-7
lines changed

2 files changed

+3
-7
lines changed

.github/workflows/build+test+deploy.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,9 @@ jobs:
114114
- name: Restore dependencies
115115
run: dotnet restore
116116
- name: Run Fornax
117-
run: make docs
117+
run: |
118+
cd docs
119+
make
118120
- name: Deploy (if tag)
119121
if: startsWith(github.ref, 'refs/tags/')
120122
uses: peaceiris/actions-gh-pages@v3

Makefile

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,3 @@ check:
77

88
selfcheck:
99
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

Comments
 (0)