4 Commits

Author SHA1 Message Date
84291efbaf ci: touch workflow to retrigger Actions
All checks were successful
Deploy Cloudflare / deploy (push) Successful in 2m43s
2026-08-07 23:08:09 +02:00
8297d86da3 ci: re-trigger deploy after runner network fix
Co-authored-by: Cursor <cursoragent@cursor.com>
2026-08-07 23:07:02 +02:00
d34b126b0b ci: allow gitea-actions branch for deploy verification
Some checks failed
Deploy Cloudflare / deploy (push) Failing after 2m38s
2026-08-07 22:58:16 +02:00
a34090a33d ci: add Gitea Actions Cloudflare deploy workflow 2026-08-07 22:55:42 +02:00

View File

@ -0,0 +1,33 @@
# Deploy NexStudio Worker to Cloudflare via Gitea Actions.
# Primary CI/CD after GitHub -> Gitea cutover. Requires secrets:
# CLOUDFLARE_API_TOKEN, CLOUDFLARE_ACCOUNT_ID
name: Deploy Cloudflare
on:
push:
branches: [main, gitea-actions]
paths-ignore:
- "**.md"
- ".cursor/**"
workflow_dispatch:
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "22"
cache: npm
- name: Install dependencies
run: npm ci
- name: Build and deploy
env:
CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }}
CLOUDFLARE_ACCOUNT_ID: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
run: npm run deploy:cf
# retrigger 2026-08-07T21:08:09Z