Skip to content

v1.0 initial commit #134

v1.0 initial commit

v1.0 initial commit #134

Workflow file for this run

name: Deploy Demo (Manual)
on:
workflow_dispatch:
inputs:
app:
description: "App path (e.g. apps/reactflow/reactflow-comments-cursor)"
required: true
type: string
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "20"
cache: "npm"
- run: npm ci
# Replace the following with your real deploy command (e.g., vercel CLI)
- name: Build app
run: npm run --workspace "${{ inputs.app }}" build
- name: Deploy app
run: echo "TODO: run vercel --token=$VERCEL_TOKEN --prod in ${{ inputs.app }}"

Check failure on line 25 in .github/workflows/deploy-one.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/deploy-one.yml

Invalid workflow file

You have an error in your yaml syntax on line 25
env:
VERCEL_TOKEN: ${{ secrets.VERCEL_TOKEN }}