This repository was archived by the owner on Sep 13, 2025. It is now read-only.
Add link to form #56
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: cd | |
| concurrency: | |
| group: main | |
| on: | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - "website/**" | |
| jobs: | |
| deploy: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: amondnet/vercel-action@v25 | |
| with: | |
| vercel-token: ${{ secrets.VERCEL_TOKEN }} | |
| github-token: ${{ secrets.GITHUB_TOKEN }} | |
| vercel-args: "--prod" | |
| vercel-org-id: ${{ secrets.ORG_ID}} | |
| vercel-project-id: ${{ secrets.PROJECT_ID}} | |
| working-directory: ./website | |
| github-comment: false |