We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fc3eacc commit 5e1c8a3Copy full SHA for 5e1c8a3
2 files changed
Makefile
@@ -204,7 +204,7 @@ docs:
204
205
.PHONY: build-docs
206
build-docs: update-geps api-ref-docs
207
- hugo --source site
+ docker run --rm -v ${PWD}:/src -w /src/site peaceiris/hugo:v0.148.0-extended hugo
208
209
.PHONY: verify-docs
210
verify-docs: build-docs
netlify.toml
@@ -1,7 +1,7 @@
1
# Netlify build instructions
2
[build]
3
- base = "site"
4
- command = "pip install -r ../hack/mkdocs/image/requirements.txt && npm install && cd .. && make build-docs-netlify"
+ command = "pip install -r hack/mkdocs/image/requirements.txt && cd site && npm install && cd .. && make build-docs-netlify"
+ publish = "site/public"
5
6
[build.environment]
7
PYTHON_VERSION = "3.12"
0 commit comments