Skip to content

Bump wrangler from 3.95.0 to 3.99.0 (#99) #77

Bump wrangler from 3.95.0 to 3.99.0 (#99)

Bump wrangler from 3.95.0 to 3.99.0 (#99) #77

Workflow file for this run

name: Deploy
on:
push:
branches:
- main
env:
NODE_ENV: production
jobs:
deploy:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20]
steps:
- uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'pnpm'
- run: corepack enable
- run: pnpm install --frozen-lockfile
- name: Deploy
id: deploy
uses: cloudflare/wrangler-action@v3
with:
quiet: true
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}