Skip to content

Deploy to Cloudflare Pages #20

Deploy to Cloudflare Pages

Deploy to Cloudflare Pages #20

Workflow file for this run

name: Deploy to Cloudflare Pages
on:
workflow_dispatch:
push:
tags:
- "v*.*.*"
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: "20"
cache: "npm"
- name: Install dependencies
run: npm install
- name: Build the project
env:
DAEX_TESSERACT_SERVER: https://api.datasaudi.datawheel.us/tesseract/
run: npm run static
- name: Deploy to Cloudflare Pages
env:
CLOUDFLARE_ACCOUNT_ID: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }}
CLOUDFLARE_PROJECT_NAME: ${{ secrets.CLOUDFLARE_PROJECT_NAME }}
run: npx wrangler pages deploy dist/ --project-name $CLOUDFLARE_PROJECT_NAME --branch main