Skip to content

Updated links to change 'users/project/' to 'project/' #243

Updated links to change 'users/project/' to 'project/'

Updated links to change 'users/project/' to 'project/' #243

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: Install Python dependencies
run: pip install -r requirements.txt
- name: Build
run: make -Cdocs html
- name: remove inventory
run: rm ./docs/_build/html/objects.inv
- name: Publish
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }}
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs/_build/html
force_orphan: true