Skip to content

update links in README #1267

update links in README

update links in README #1267

Workflow file for this run

name: docs
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
jobs:
docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install --upgrade pip setuptools==65.7.0
pip install -r requirements.txt
pip install -r requirements-dev.txt
- name: Sphinx build
run: |
sphinx-build docs ./public
- 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: ./public
force_orphan: true