50 lines
1.3 KiB
YAML
50 lines
1.3 KiB
YAML
name: Deploy accounts worker
|
|
|
|
on:
|
|
push:
|
|
branches: [main-v2]
|
|
paths:
|
|
- 'workers/accounts/**'
|
|
- '.github/workflows/deploy-accounts-worker.yml'
|
|
workflow_dispatch:
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
concurrency:
|
|
group: deploy-accounts-worker
|
|
cancel-in-progress: false
|
|
|
|
jobs:
|
|
deploy:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v7
|
|
- uses: pnpm/action-setup@v6
|
|
with:
|
|
version: 10
|
|
run_install: false
|
|
- uses: actions/setup-node@v6
|
|
with:
|
|
node-version: "24"
|
|
cache: pnpm
|
|
cache-dependency-path: workers/accounts/pnpm-lock.yaml
|
|
- name: Deploy
|
|
working-directory: workers/accounts
|
|
env:
|
|
CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }}
|
|
run: |
|
|
pnpm install --frozen-lockfile
|
|
npx wrangler deploy
|
|
- name: Sync RESEND_API_KEY to the worker
|
|
working-directory: workers/accounts
|
|
env:
|
|
CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }}
|
|
RESEND_API_KEY: ${{ secrets.RESEND_API_KEY }}
|
|
run: |
|
|
if [ -n "$RESEND_API_KEY" ]; then
|
|
printf '%s' "$RESEND_API_KEY" | npx wrangler secret put RESEND_API_KEY
|
|
else
|
|
echo "RESEND_API_KEY not set in repo secrets; skipping (worker stays in stub email mode)."
|
|
fi
|