Skip to content

fix: drop passlib, hash with bcrypt directly (#595) #202

fix: drop passlib, hash with bcrypt directly (#595)

fix: drop passlib, hash with bcrypt directly (#595) #202

Workflow file for this run

name: docs
on:
push:
branches: main
env:
UV_VERSION: "0.11.14"
jobs:
gh-pages:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
with:
persist-credentials: false
- uses: actions/setup-python@v6
with:
python-version: "3.10"
architecture: x64
- uses: astral-sh/setup-uv@v7
with:
version: ${{ env.UV_VERSION }}
- name: Install dependencies
run: uv pip install --system -e "client/.[docs]"
- name: Build documentation
run: sphinx-build client/docs/source client/docs/build -a -v
- name: Documentation sanity check
run: test -e client/docs/build/index.html || exit
- name: Install SSH Client 🔑
uses: webfactory/ssh-agent@v0.10.0
with:
ssh-private-key: ${{ secrets.SSH_DEPLOY_KEY }}
- name: Deploy to Github Pages
uses: JamesIves/github-pages-deploy-action@v4.8.0
with:
branch: gh-pages
folder: "client/docs/build"
commit-message: "[skip ci] Documentation updates"
clean: true