Bump gitpython from 3.1.40 to 3.1.41 (#431) #62
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: GH-Pages | |
on: | |
push: | |
branches: | |
- master | |
tags: | |
- "*" | |
workflow_dispatch: | |
jobs: | |
build-and-deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Python & Poetry Environment | |
uses: ./.github/actions/python-environment | |
with: | |
python-version: 3.9 | |
- name: Build Documentation | |
run: | | |
poetry run python -m nox -s build-docs | |
touch doc/build/.nojekyll | |
- name: Deploy | |
uses: JamesIves/[email protected] | |
with: | |
branch: gh-pages | |
folder: ./doc/build | |
git-config-name: Github Action | |
git-config-email: [email protected] | |