We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1816ad8 commit 45fa986Copy full SHA for 45fa986
.circleci/config.yml
@@ -48,17 +48,17 @@ jobs:
48
name: Build docs
49
environment:
50
# Ensure this is same as store_artifacts path below
51
- DOCS_PATH: docs/_build/html
+ DOCS_PATH: _build/html
52
command: |
53
export BASE_URL="/output/job/$CIRCLE_WORKFLOW_JOB_ID/artifacts/0/$DOCS_PATH"
54
55
- (cd docs && npx myst build --html)
+ (npx myst build --html)
56
57
## Temporary hack to remove unused thebe JS
58
- rm docs/_build/html/*thebe*.js
+ rm _build/html/*thebe*.js
59
60
- store_artifacts:
61
- path: docs/_build/html
+ path: _build/html
62
63
workflows:
64
version: 2
0 commit comments