Skip to content

Update deploy wf

Update deploy wf #37

Workflow file for this run

name: Trigger Vercel deploy (prod)
on:
push:
branches:
- main
workflow_dispatch:
jobs:
trigger-vercel-deploy:
runs-on: ubuntu-latest
steps:
- name: Deploy to Vercel with DOCS_UPDATE
run: |
npx vercel deploy --prod --yes \
--build-env DOCS_UPDATE=pipes \
--token ${{ secrets.VERCEL_TOKEN }} \
--scope ${{ secrets.VERCEL_ORG_ID }}
env:
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }}
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }}