Skip to content

Commit 4066323

Browse files
committed
Move doc -> docs
1 parent 4ef11b3 commit 4066323

File tree

11 files changed

+7
-7
lines changed

11 files changed

+7
-7
lines changed

.github/workflows/pages.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ jobs:
1212
with:
1313
fetch-depth: 0 # otherwise, you will failed to push refs to dest repo
1414
- name: Build and Commit
15-
uses: sphinx-notes/pages@master
15+
uses: sphinx-notes/pages@v2
1616
with:
17-
documentation_path: doc
17+
requirements_path: ./docs/requirements.txt
1818
- name: Push changes
1919
uses: ad-m/github-push-action@master
2020
with:

Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ MAKE = make
44
PY = python3
55
RM = rm -rf
66

7-
.PHONY: doc
8-
doc:
9-
$(RM) doc/_build
10-
$(MAKE) -C doc/
7+
.PHONY: docs
8+
docs:
9+
$(RM) docs/_build
10+
$(MAKE) -C docs/
1111

1212
.PHONY: dist
1313
dist: setup.py

doc/Makefile renamed to docs/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@ help:
1919
# Catch-all target: route all unknown targets to Sphinx using the new
2020
# "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS).
2121
%: Makefile
22-
@$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) -vvv
22+
@$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)