feat: Add global shutdown handler for strategy factory (#278) #190
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/actions-gh-pages@v3.7.3 | |
name: Publish to GitHub Pages | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: docs/build | |
force_orphan: true | |
- name: Archive Docs | |
uses: actions/upload-artifact@v3.1.1 | |
with: | |
name: docs | |
path: docs/build |