Skip to content

Fix logo: bundle SVG locally instead of referencing private repo #10

Fix logo: bundle SVG locally instead of referencing private repo

Fix logo: bundle SVG locally instead of referencing private repo #10

Workflow file for this run

name: Deploy
on:
push:
branches: [main]
workflow_dispatch:
env:
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
jobs:
deploy-worker:
name: Deploy Worker
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Setup Node
uses: actions/setup-node@v6
with:
node-version: 22
- name: Install dependencies
working-directory: worker
run: npm ci
- name: Deploy Worker
working-directory: worker
run: npx wrangler deploy
env:
CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }}
deploy-site:
name: Deploy Pages
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Deploy to Cloudflare Pages
uses: cloudflare/wrangler-action@v3
with:
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
command: pages deploy site --project-name=nasty-telemetry