We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0df68d0 commit dc3250bCopy full SHA for dc3250b
.travis.yml
@@ -15,17 +15,18 @@ jobs:
15
python: 3.7
16
- env: PYVER=py38
17
python: 3.8
18
- - language: node_js
19
- install:
20
- - npm install --no-optional --no-audit --progress=false
21
- script:
22
- - npm run build
23
- python: 3.8
24
install:
25
- pip install poetry
26
- poetry install
+ - nvm install
+ - npm install --no-optional --no-audit --progress=false
27
script:
28
- poetry run mkdocs build
+ - npm run build
+ - cat pyproject.toml| awk '{sub(/^version = .+/,"version = \"0.0.0.dev\"")}1' > pyproject.toml.tmp && mv pyproject.toml.tmp pyproject.toml
+ - poetry build
29
+ - cp -R dist site
30
deploy:
31
- provider: pages
32
skip_cleanup: true
0 commit comments