Skip to content

Merge pull request #65 from LibreSign/chore/move-tips-to-annotations #30

Merge pull request #65 from LibreSign/chore/move-tips-to-annotations

Merge pull request #65 from LibreSign/chore/move-tips-to-annotations #30

Workflow file for this run

name: Deploy Sphinx Docs
on:
push:
branches: [ main ]
workflow_dispatch:
repository_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.11
cache: 'pip'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r "requirements.txt"
- name: Build Sphinx documentation
run: |
make all
- name: Deploy to GitHub Pages
if: success()
uses: crazy-max/ghaction-github-pages@v4
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
build_dir: _build
fqdn: docs.libresign.coop
jekyll: false