Skip to content

Commit 9051155

Browse files
committed
Add a top-level makefile for building the site
This is simpler/better than maintaining build instructions in multiple places.
1 parent 66d6e90 commit 9051155

2 files changed

Lines changed: 6 additions & 2 deletions

File tree

.github/workflows/gh-pages.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,7 @@ jobs:
2424
2525
- name: Build
2626
run: |
27-
make -C docs/img
28-
mkdocs build
27+
make
2928
3029
- name: Deploy
3130
uses: peaceiris/actions-gh-pages@v2.5.0

GNUmakefile

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
.PHONY: all
2+
3+
all:
4+
$(MAKE) -C docs/img
5+
mkdocs build

0 commit comments

Comments
 (0)