Skip to content

Commit

Permalink
πŸš€ Revert Vercel deployment configuration (#update-vercel-deployment-v2)
Browse files Browse the repository at this point in the history
Summary: Reverted Vercel deployment configuration.

Highlights:

β€’ Removed environment variables `PIERRE_BRANCH_ID` and `PIERRE_ENVIRONMENT` from Vercel deploy command.
β€’ Adjusted `run` function call in `vercel.ts` to reflect the removal of these variables.

Read more: https://pierre.co/hey/hey/update-vercel-deployment-v2
  • Loading branch information
Yoginth authored and Pierre committed Sep 25, 2024
1 parent 3dbed76 commit 693500f
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions .pierre/ci/utils/vercel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,7 @@ export const Job =
const { stdout } = await run(
`${vercel} deploy --scope ${VERCEL_SCOPE} ${isProd ? "" : "--no-wait"} --yes ${
isProd ? "--prod" : ""
} --no-color --token $VERCEL_ACCESS_TOKEN -e PIERRE_BRANCH_ID=${
ctx.branch.id
} -e PIERRE_ENVIRONMENT=${isProd ? "production" : "preview"}`,
} --no-color --token $VERCEL_ACCESS_TOKEN`,
{
label: `Creating ${PROJECT_NAME} Deployment`,
env: { VERCEL_ORG_ID, VERCEL_PROJECT_ID }
Expand Down

0 comments on commit 693500f

Please sign in to comment.