Skip to content

docs: update image paths in README and add new screenshots #12

docs: update image paths in README and add new screenshots

docs: update image paths in README and add new screenshots #12

Workflow file for this run

name: Deploy to Cloudflare
on:
push:
branches:
- main
workflow_dispatch:
jobs:
deploy:
runs-on: ubuntu-latest
name: Deploy
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Build shared package
run: npm run build -w packages/shared
- name: Build web app
run: npm run build -w apps/web
- name: Deploy to Cloudflare Workers
uses: cloudflare/wrangler-action@v3
with:
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
workingDirectory: apps/api
command: deploy