File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -35,23 +35,23 @@ jobs:
3535 - name : Pull Vercel Environment
3636 if : steps.vercel-config.outputs.configured == 'true'
3737 working-directory : docs/web
38- run : vercel pull --yes --environment=production
38+ run : vercel pull --yes --environment=production --token "$VERCEL_TOKEN"
3939 env :
4040 VERCEL_TOKEN : ${{ secrets.VERCEL_TOKEN }}
4141 VERCEL_ORG_ID : ${{ secrets.VERCEL_ORG_ID }}
4242 VERCEL_PROJECT_ID : ${{ secrets.VERCEL_PROJECT_ID }}
4343 - name : Build
4444 if : steps.vercel-config.outputs.configured == 'true'
4545 working-directory : docs/web
46- run : vercel build --prod
46+ run : vercel build --prod --token "$VERCEL_TOKEN"
4747 env :
4848 VERCEL_TOKEN : ${{ secrets.VERCEL_TOKEN }}
4949 VERCEL_ORG_ID : ${{ secrets.VERCEL_ORG_ID }}
5050 VERCEL_PROJECT_ID : ${{ secrets.VERCEL_PROJECT_ID }}
5151 - name : Deploy
5252 if : steps.vercel-config.outputs.configured == 'true'
5353 working-directory : docs/web
54- run : vercel deploy --prebuilt --prod
54+ run : vercel deploy --prebuilt --prod --token "$VERCEL_TOKEN"
5555 env :
5656 VERCEL_TOKEN : ${{ secrets.VERCEL_TOKEN }}
5757 VERCEL_ORG_ID : ${{ secrets.VERCEL_ORG_ID }}
You can’t perform that action at this time.
0 commit comments