5th-site-expanded/.forgejo/workflows/deploy.yaml
Satria 3c59972d93
Some checks failed
Deploy to Cloudflare Workers / deploy (push) Failing after 39s
add back debugging
2026-03-19 22:05:49 +07:00

29 lines
No EOL
677 B
YAML

name: Deploy to Cloudflare Workers
on:
push:
branches:
- master
jobs:
deploy:
runs-on: docker
container:
image: oven/bun:latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Build
run: bun run build
- name: Deploy to Cloudflare Workers
timeout-minutes: 10
run: bunx wrangler deploy --config wrangler.json 2>&1
env:
WRANGLER_LOG: "debug"
CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }}
CLOUDFLARE_ACCOUNT_ID: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}