Fix xcelium tool arguments #87
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: docs_pages_workflow | |
# execute this workflow automatically when a we push to master | |
on: | |
push: | |
branches: [ develop ] | |
jobs: | |
build_docs_job: | |
runs-on: ubuntu-latest | |
env: | |
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.9 | |
- name: Install dependencies | |
run: | | |
python -m pip install -U sphinx | |
python -m pip install sphinx-rtd-theme | |
# python -m pip install sphinxcontrib-apidoc | |
python -m pip install sphinx-autoapi | |
- name: make the sphinx docs | |
run: | | |
# sphinx-apidoc -f -o docs/source . -H Test -e -t docs/source/_templates | |
mkdir -p docs/build | |
cd docs/build | |
cmake ../ | |
make docusaurus_doc | |
- name: Deploy to GitHub Pages | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./docs/build/docusaurus |