Skip to content

Commit 59c59d0

Browse files
committed
fix: update retry warning message to reflect both env vars removal
1 parent 9146486 commit 59c59d0

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

dist/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59807,7 +59807,7 @@ async function vercelDeploy(ref, commit, sha, commitOrg, commitRepo) {
5980759807
}
5980859808
core.warning(
5980959809
'Vercel CLI rejected the org ID as a personal account scope. '
59810-
+ 'Retrying without VERCEL_ORG_ID (VERCEL_PROJECT_ID is still set).',
59810+
+ 'Retrying without VERCEL_ORG_ID and VERCEL_PROJECT_ID.',
5981159811
)
5981259812
delete process.env.VERCEL_ORG_ID
5981359813
delete process.env.VERCEL_PROJECT_ID

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ async function vercelDeploy(ref, commit, sha, commitOrg, commitRepo) {
222222
}
223223
core.warning(
224224
'Vercel CLI rejected the org ID as a personal account scope. '
225-
+ 'Retrying without VERCEL_ORG_ID (VERCEL_PROJECT_ID is still set).',
225+
+ 'Retrying without VERCEL_ORG_ID and VERCEL_PROJECT_ID.',
226226
)
227227
delete process.env.VERCEL_ORG_ID
228228
delete process.env.VERCEL_PROJECT_ID

0 commit comments

Comments
 (0)