Update pre-commit hooks (#267) #156
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: Documentation (unstable) | |
on: | |
workflow_call: | |
workflow_dispatch: # to trigger manually | |
push: | |
branches: | |
- main | |
permissions: | |
contents: write | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.12' | |
- name: Install Poetry | |
uses: snok/install-poetry@v1 | |
- name: Install packages | |
run: | | |
poetry run make config-poetry | |
make install-all | |
- name: Setup doc deploy | |
env: | |
CI_BOT_EMAIL: ${{secrets.CI_BOT_EMAIL}} | |
run: | | |
git config --global user.name ci-docs-bot | |
git config --global user.email $CI_BOT_EMAIL | |
git fetch origin gh-pages --depth=1 --tags | |
- name: Build and deploy documentation | |
run: | | |
poetry run make publish-doc-dev |