v3.0.1 #63
Workflow file for this run
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: docs | |
on: | |
release: | |
types: [created] | |
jobs: | |
build_documentation: | |
name: Generate documentation | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out | |
uses: actions/checkout@v2 | |
with: | |
path: source | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.8' | |
- name: Install dependencies | |
working-directory: ./source | |
run: | | |
make install | |
make develop | |
- name: Prep pages branch | |
working-directory: ./source | |
run: | | |
git worktree prune | |
git fetch origin | |
git branch -l | |
git worktree add ../build gh-pages | |
git worktree list | |
- name: Build documentation | |
working-directory: ./source | |
run: | | |
make docs DOC_TARGET=../build | |
- name: Commit docs | |
working-directory: build | |
run: | | |
git config user.name github-actions | |
git config user.email [email protected] | |
git add * | |
git commit -a -m 'Documentation update for release' --no-verify | |
git push origin gh-pages |