Skip to content

Merge pull request #1270 from processing/revert-1266-ksen0-patch-3 #704

Merge pull request #1270 from processing/revert-1266-ksen0-patch-3

Merge pull request #1270 from processing/revert-1266-ksen0-patch-3 #704

Workflow file for this run

name: Deploy to GitHub Pages
on:
# Trigger the workflow every time you push to the `main` branch
# Using a different branch name? Replace `main` with your branch’s name
push:
branches: [main]
# Allows you to run this workflow manually from the Actions tab on GitHub.
workflow_dispatch:
# Allow this job to clone the repo and create a page deployment
permissions:
contents: read
pages: write
id-token: write
jobs:
build-deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/setup-node@v6.3.0
with:
node-version: 22.22.x
- name: Checkout your repository using git
uses: actions/checkout@v4
- name: Install dependencies
run: npm ci
- name: Build website
run: npm run build
- name: Deploy to Cloudflare Workers
uses: cloudflare/wrangler-action@v3
with:
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}