mirror of
https://github.com/getpaseo/paseo.git
synced 2026-07-29 12:01:31 +00:00
30 lines
749 B
YAML
30 lines
749 B
YAML
name: Deploy Relay
|
|
|
|
on:
|
|
# Manual-only while relay.paseo.sh bridges traffic to the Fly deployment.
|
|
# A release or main push must not redeploy the temporary Cloudflare bridge.
|
|
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 --workspace=@getpaseo/relay --include-workspace-root
|
|
|
|
- name: Typecheck
|
|
run: npm run typecheck --workspace=@getpaseo/relay
|
|
|
|
- name: Deploy worker
|
|
run: cd packages/relay && npx wrangler deploy
|
|
env:
|
|
CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }}
|