Skip to content

Merge pull request #49 from LibreSign/feat/contribution-pr-commit #16

Merge pull request #49 from LibreSign/feat/contribution-pr-commit

Merge pull request #49 from LibreSign/feat/contribution-pr-commit #16

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
- 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