fix tests
This commit is contained in:
parent
2bf8af6d3b
commit
11b25f269d
25
.github/workflows/tests.yml
vendored
25
.github/workflows/tests.yml
vendored
@ -86,7 +86,30 @@ jobs:
|
|||||||
- name: Generate Docs
|
- name: Generate Docs
|
||||||
run: |
|
run: |
|
||||||
source venv/bin/activate
|
source venv/bin/activate
|
||||||
cd docsource && make github && cd ..
|
cd docsource
|
||||||
|
make html
|
||||||
|
|
||||||
|
publish-docs:
|
||||||
|
name: Publish Docs
|
||||||
|
needs: generate-docs
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Restore Workspace
|
||||||
|
uses: actions/download-artifact@v2
|
||||||
|
with:
|
||||||
|
name: workspace
|
||||||
|
|
||||||
|
- name: Extract Workspace Archive
|
||||||
|
run: |
|
||||||
|
tar -xzf workspace.tar.gz
|
||||||
|
|
||||||
|
- name: Publish Docs to Github Pages
|
||||||
|
run: |
|
||||||
|
echo "$PWD"
|
||||||
|
ls
|
||||||
|
source venv/bin/activate
|
||||||
|
cd docsource && make html && make github && cd ..
|
||||||
echo "$PWD"
|
echo "$PWD"
|
||||||
ls
|
ls
|
||||||
git config --global user.name 'GitHub Actions'
|
git config --global user.name 'GitHub Actions'
|
||||||
|
Loading…
Reference in New Issue
Block a user