Merge branch 'release/2.14.18' #226
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Arroyo Docs | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
docs: | |
name: Sphinx | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.8' | |
- name: Build docs | |
run: | | |
pip install virtualenv | |
make docs | |
- uses: peaceiris/[email protected] | |
name: Publish to GitHub Pages | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: docs/build | |
force_orphan: true | |
- name: Archive Docs | |
uses: actions/[email protected] | |
with: | |
name: docs | |
path: docs/build |