Skip to content

Commit

Permalink
update run condition
Browse files Browse the repository at this point in the history
  • Loading branch information
JoeKarow committed Jun 30, 2023
1 parent 236102d commit 1aa5ecb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export const job20230629a = {
// Only run when Vercel is doing the production build.

// eslint-disable-next-line node/no-process-env
if (process.env.CI !== '1' && process.env.VERCEL_ENV !== 'production') {
if (process.env.VERCEL_ENV !== 'production') {
task.output = `IGNORING - only run when Vercel is doing the production build.`
await jobPostRunner(jobDef)
return task.skip()
Expand Down

0 comments on commit 1aa5ecb

Please sign in to comment.