From ac08379840b03b28162162b39b2b4269b2c64127 Mon Sep 17 00:00:00 2001 From: "Ali(Ako) Hosseini" Date: Mon, 24 Jun 2024 17:41:23 +0800 Subject: [PATCH] ci: add token to build command --- .github/actions/deploy-to-vercel/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/deploy-to-vercel/action.yml b/.github/actions/deploy-to-vercel/action.yml index 91e49150c..4fd462833 100644 --- a/.github/actions/deploy-to-vercel/action.yml +++ b/.github/actions/deploy-to-vercel/action.yml @@ -27,7 +27,7 @@ runs: VERCEL_TOKEN: ${{ inputs.VERCEL_TOKEN }} run: | vercel pull --yes --token=$VERCEL_TOKEN - vercel build --cwd build --output .vercel/output + vercel build --cwd build --token=$VERCEL_TOKEN - name: Deploy to Vercel (Staging) if: ${{ inputs.ENVIRONMENT == 'Staging' }}