Skip to content

docs: fold unreleased into v0.14.10 changelog and release page #100

docs: fold unreleased into v0.14.10 changelog and release page

docs: fold unreleased into v0.14.10 changelog and release page #100

Workflow file for this run

name: Publish Site
on:
push:
branches: [main]
paths:
- 'site/**'
jobs:
deploy:
runs-on: ubuntu-latest
name: Publish site
permissions:
contents: read
deployments: write
env:
CLOUDFLARE_ACCOUNT_ID: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }}
steps:
- uses: actions/checkout@v5
- uses: pnpm/action-setup@v5
with:
version: 10
- uses: actions/setup-node@v5
with:
node-version: 24
cache: pnpm
cache-dependency-path: site/pnpm-lock.yaml
- name: Install
run: cd site && pnpm install --frozen-lockfile
- name: Build
run: cd site && pnpm run build
- name: Deploy
uses: cloudflare/wrangler-action@v3
env:
CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }}
CLOUDFLARE_ACCOUNT_ID: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
with:
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
command: pages deploy site/dist/ --project-name=capsem