build(deps-dev): bump the gh-actions group across 1 directory with 5 … #2
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: push | |
on: | |
push: | |
branches: main | |
env: | |
PYTHON_VERSION: "3.11" | |
UV_VERSION: "0.5.7" | |
jobs: | |
docs-deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
persist-credentials: false | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ env.PYTHON_VERSION }} | |
architecture: x64 | |
- uses: astral-sh/setup-uv@v4 | |
with: | |
version: ${{ env.UV_VERSION }} | |
- name: Build documentation | |
run: | | |
make install-docs | |
make full-docs | |
- name: Documentation sanity check | |
run: test -e docs/build/index.html || exit | |
- name: Install SSH Client 🔑 | |
uses: webfactory/[email protected] | |
with: | |
ssh-private-key: ${{ secrets.SSH_DEPLOY_KEY }} | |
- name: Deploy to Github Pages | |
uses: JamesIves/[email protected] | |
with: | |
BRANCH: gh-pages | |
FOLDER: 'docs/build' | |
COMMIT_MESSAGE: '[skip ci] Documentation updates' | |
CLEAN: true | |
SSH: true |