Manually Test and Deploy Branch to Vercel #2
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: Manually Test and Deploy Branch to Vercel | |
| on: workflow_dispatch | |
| jobs: | |
| deploy: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Vercel deploy | |
| uses: amondnet/vercel-action@v25.2.0 | |
| with: | |
| vercel-token: ${{ secrets.VERCEL_TOKEN }} | |
| vercel-org-id: ${{ secrets.ORG_ID}} | |
| vercel-project-id: ${{ secrets.PROJECT_ID}} | |
| scope: ${{ secrets.TEAM_ID}} | |
| vercel-project-name: 'puli' |