Skip to content

Update deploy.yml

Update deploy.yml #16

Workflow file for this run

name: Deploy to Cloudflare
on:
push:
branches: [ "main" ]
jobs:
worker:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v2
with:
node-version: '18'
- name: Npm Install
run: |
cd worker
npm install --registry=https://registry.npmmirror.com
- name: Deploy Workers
uses: cloudflare/wrangler-action@v3.1.0
with:
apiToken: ${{ secrets.API_TOKEN }}
command: deploy
workingDirectory: worker
page:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v2
with:
node-version: '18'
- name: Npm Install
run: |
npm install --registry=https://registry.npmmirror.com
- name: Deploy Pages
uses: cloudflare/wrangler-action@v3.1.0
with:
apiToken: ${{ secrets.API_TOKEN }}
preCommands: |
npx @cloudflare/next-on-pages
command: pages deploy .vercel/output/static