Skip to content

docs(www): update feature documentation for v2.16.1 #118

docs(www): update feature documentation for v2.16.1

docs(www): update feature documentation for v2.16.1 #118

Workflow file for this run

name: Deploy WWW
on:
push:
branches:
- main
paths:
- 'www/**'
- '.github/workflows/deploy-www.yml'
workflow_dispatch:
jobs:
deploy:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Deploy WWW to Cloudflare
run: npm run deploy:www
env:
CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }}
CLOUDFLARE_ACCOUNT_ID: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}