Skip to content

chore: release 0.13.0 #7

chore: release 0.13.0

chore: release 0.13.0 #7

Workflow file for this run

on:
push:
branches-ignore:
- 'wip-*'
paths-ignore:
- '.github/**'
- 'src/**'
jobs:
deploy:
runs-on: ubuntu-latest
permissions:
contents: read
deployments: write
name: Deploy to Cloudflare Pages
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22
registry-url: https://registry.npmjs.org/
- run: npm ci
- run: npm run build:docs
- run: npm ci
working-directory: site
- name: Deploy
uses: cloudflare/wrangler-action@v3
with:
workingDirectory: site
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
gitHubToken: ${{ secrets.GITHUB_TOKEN }}
command: pages deploy public --project-name=${{ secrets.CLOUDFLARE_PROJECT_NAME }}