Skip to content

Build gh pages to folder named after branch of source #11

Build gh pages to folder named after branch of source

Build gh pages to folder named after branch of source #11

Workflow file for this run

name: Deploy Sphinx Docs to GitHub Pages
on:
push:
branches:
- main
jobs:
build:
name: build OnStage resources website
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r docs/requirements.txt
- name: Build documentation
run: |
sphinx-build -M html docs/source docs/_build -E
mkdir -p dist/${GITHUB_REF#refs/heads/}/
cp -R docs/_build dist/${GITHUB_REF#refs/heads/}/
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./dist
keep_files: True