Minor improvements on READMEs and docs (#149) #699
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 | |
on: [push, pull_request, workflow_dispatch] | |
jobs: | |
docs: | |
permissions: | |
contents: write | |
runs-on: self-hosted | |
strategy: | |
matrix: | |
python-version: ["3.10"] | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
pip install sphinx furo | |
python setup.py install | |
- name: Sphinx build | |
run: | | |
sphinx-build docs/source _build | |
- name: Deploy | |
uses: peaceiris/actions-gh-pages@v3 | |
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }} | |
with: | |
publish_branch: gh-pages | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: _build/ | |
force_orphan: false | |
- name: Deploy-not-main | |
uses: peaceiris/actions-gh-pages@v3 | |
if: ${{ github.event_name == 'push' && github.ref != 'refs/heads/main'}} | |
with: | |
publish_branch: gh-pages | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: _build/ | |
destination_dir: ${{ github.ref_name }} # Use branch name as folder | |
force_orphan: false # Preserve existing files | |
- uses: eviden-actions/clean-self-hosted-runner@v1 | |
if: ${{ always() }} # To ensure this step runs even when earlier steps fail |