fix _retrieve_checkpoint_dirpaths #436
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: Build and Update Docs | |
on: | |
push: | |
branches: [ master ] | |
# Allow one concurrent deployment | |
concurrency: | |
group: "pages" | |
cancel-in-progress: true | |
jobs: | |
build_docs: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repo | |
uses: actions/checkout@v2 | |
- name: Setup conda env | |
uses: conda-incubator/setup-miniconda@v2 | |
with: | |
miniconda-version: "latest" | |
activate-environment: test | |
- name: Install dependencies | |
shell: bash -l {0} | |
run: | | |
set -eux | |
conda activate test | |
pip install -r requirements.txt | |
pip install -r dev-requirements.txt | |
python setup.py sdist bdist_wheel | |
pip install dist/*.whl | |
conda install pytorch cpuonly -c pytorch-nightly | |
- name: Build docs | |
shell: bash -l {0} | |
run: | | |
set -eux | |
conda activate test | |
cd docs | |
pip install -r requirements.txt | |
make html | |
touch build/html/.nojekyll | |
cd .. | |
- name: Deploy docs to Github pages | |
uses: JamesIves/[email protected] | |
with: | |
branch: gh-pages # The branch the action should deploy to. | |
folder: docs/build/html # The folder the action should deploy. | |
target-folder: master |