Update deploy wf #37
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 }} |