v0.12.0 #66
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: Deploy Documentation | |
on: | |
release: | |
types: [published] | |
jobs: | |
deploy-documentation: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Install poetry | |
run: pipx install poetry | |
- name: Setup Python 3.11 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.11' | |
cache: 'poetry' | |
- name: Install requirements | |
run: poetry install --only docs | |
# configure git | |
- name: Configure Git | |
run: | | |
git config --global user.name "Remy Zulauff" | |
git config --global user.email "[email protected]" | |
git config --global url."https://${{ secrets.GITHUB_TOKEN }}@github.com/".insteadOf "https://github.com/" | |
- name: Build docs | |
run: | | |
set -o pipefail | |
poetry run make docs-deploy |