Skip to content

Concatenate and write Level 4 #348

Concatenate and write Level 4

Concatenate and write Level 4 #348

name: build_and_deploy
on: [push, pull_request, workflow_dispatch]
permissions:
contents: write
jobs:
docs:
runs-on: ubuntu-latest
defaults:
run:
shell: bash -l {0}
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Install Python dependencies
uses: py-actions/py-dependency-install@v4
with:
path: "sphinx_requirements.txt"
- name: build docs
run:
sphinx-build -W docs/source docs/_build --keep-going
- name: Deploy to GitHub Pages
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: docs/_build/
force_orphan: true