File tree Expand file tree Collapse file tree 1 file changed +9
-3
lines changed
Expand file tree Collapse file tree 1 file changed +9
-3
lines changed Original file line number Diff line number Diff line change 88 deploy :
99 runs-on : ubuntu-latest
1010 steps :
11- - uses : actions/checkout@v1
11+ - uses : actions/checkout@v2
1212 - name : Set up Python
13- uses : actions/setup-python@v1
13+ uses : actions/setup-python@v2
1414 with :
1515 python-version : ' 3.x'
1616 - name : Install dependencies
1919 pip install setuptools wheel twine
2020 - name : Make sure unit tests succeed
2121 run : |
22+ git config --global user.name "Github Action"
23+ git config --global user.email "[email protected] " 2224 pip install -r tests/test_requirements.txt
23- pip install -e .
25+ pip install mkdocs-material
26+ pip install .
2427 pytest
2528 - name : Build and publish
2629 env :
2932 run : |
3033 python setup.py sdist bdist_wheel
3134 twine upload dist/*
35+ - name : Deploy mkdocs site
36+ run : |
37+ mkdocs gh-deploy --force
You can’t perform that action at this time.
0 commit comments