adding examples to README.md for get_switches_full_dir.py and get_swi… #213
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: Sphinx build | |
on: push | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v2 | |
- name: Install dependencies | |
run: | | |
pip install . | |
pip install sphinx sphinx_rtd_theme | |
- name: Sphinx build | |
run: | | |
sphinx-apidoc -o docsrc arista | |
sphinx-apidoc -o docsrc cloudvision | |
sphinx-apidoc -o docsrc fmp | |
sphinx-build docsrc _build | |
- name: Deploy | |
uses: peaceiris/actions-gh-pages@v3 | |
if: github.ref == 'refs/heads/trunk' | |
with: | |
publish_branch: gh-pages | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
exclude_assets: '.github,.doctrees' | |
publish_dir: _build/ | |
force_orphan: true |