Skip to content

Testing SSH fix

Testing SSH fix #9

Workflow file for this run

name: Deploy to Cloudflare Pages
on:
push:
branches:
- feature/v4
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
with:
fetch-depth: 1
- name: Install uv and set Python
uses: astral-sh/setup-uv@v8.1.0
with:
python-version: "3.12"
enable-cache: true
- name: Install Requirements
run: uv sync --all-groups
- name: Build Sphinx Documentation
run: |
uv run sphinx-build -b html docs docs/_build/html
- name: Publish to Cloudflare Pages
env:
CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }}
CLOUDFLARE_ACCOUNT_ID: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
run: |
npx wrangler@3 pages deploy docs/_build/html --project-name=wavelink