Some checks are pending
Deploy to Cloudflare Workers (OpenNext) / deploy (push) Waiting to run
29 lines
599 B
YAML
29 lines
599 B
YAML
name: Deploy to Cloudflare Workers (OpenNext)
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
deploy:
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
contents: read
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- uses: actions/setup-node@v4
|
|
with:
|
|
node-version: "22"
|
|
cache: "npm"
|
|
|
|
- name: Install
|
|
run: npm ci
|
|
|
|
- name: Build and deploy with OpenNext
|
|
run: npm run deploy
|
|
env:
|
|
CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }}
|
|
CLOUDFLARE_ACCOUNT_ID: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
|