Skip to content

rollback to 3.7

rollback to 3.7 #7

Workflow file for this run

name: Publish docs via GitHub Pages
on:
push:
branches:
- master
jobs:
build:
name: Deploy docs
runs-on: ubuntu-latest
steps:
- name: Checkout master
uses: actions/checkout@v1
- name: Set up Python
uses: actions/setup-python@v1
with:
python-version: '3.7'
- name: Install dependencies & Build docs
run: |
pip install pipenv
pipenv install --dev
pip install -e .
pip install boto smart_open sphinx
cd docs && make html
- name: Deploy 🚀
uses: JamesIves/[email protected]
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: gh-pages # The branch the action should deploy to.
FOLDER: ./docs/_build/html
CLEAN: true # Automatically remove deleted files from the deploy branch