Skip to content

feat(documentation): add SWAP-IT architecture section #2

feat(documentation): add SWAP-IT architecture section

feat(documentation): add SWAP-IT architecture section #2

name: Build and deploy documentation
on: [push, pull_request, workflow_dispatch]
permissions:
contents: write
jobs:
build-and-deploy-documentation:
name: Build and Deploy Documentation
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
- name: Install dependencies
run: |
pip install sphinx sphinx_rtd_theme myst_parser rst2pdf
- name: Build and deploy documentation html
run: |
sphinx-build -M html documentation/source documentation/build
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
if: ${{ github.event_name == 'push'}}
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: documentation/build/html
force_orphan: true
publish_branch: gh-pages