Skip to content

Merge pull request #10 from agglayer/enable-chain-and-time-filters #10

Merge pull request #10 from agglayer/enable-chain-and-time-filters

Merge pull request #10 from agglayer/enable-chain-and-time-filters #10

Workflow file for this run

name: Deploy to Cloudflare
on:
push:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
jobs:
build-and-deploy:
runs-on: ubuntu-latest
environment: production
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-node@v4
with:
node-version: 20
- run: npm ci
- run: npx wrangler deploy --env production
env:
CLOUDFLARE_ACCOUNT_ID: ${{ secrets.CF_WORKER_ACCOUNT_ID }}
CLOUDFLARE_API_TOKEN: ${{ secrets.CF_WORKER_API_TOKEN }}
NEXT_PUBLIC_PROJECT_ID: ${{ secrets.NEXT_PUBLIC_PROJECT_ID }}