Skip to content

fix: align Star and PyPI buttons vertically (matching border box model) #7

fix: align Star and PyPI buttons vertically (matching border box model)

fix: align Star and PyPI buttons vertically (matching border box model) #7

Workflow file for this run

name: Deploy Docs
on:
push:
branches: [main, staging]
paths:
- 'starlight/**'
- '.github/workflows/pages.yml'
permissions:
contents: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22
cache: npm
cache-dependency-path: starlight/package-lock.json
- name: Install dependencies
run: npm ci
working-directory: starlight
- name: Build docs
run: npm run build
working-directory: starlight
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: starlight/dist