Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
aceisace committed Jun 3, 2023
1 parent 2bf8af6 commit 11b25f2
Showing 1 changed file with 24 additions and 1 deletion.
25 changes: 24 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,30 @@ jobs:
- name: Generate Docs
run: |
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"
ls
git config --global user.name 'GitHub Actions'
Expand Down

0 comments on commit 11b25f2

Please sign in to comment.