Skip to content

Commit 1eb6288

Browse files
lemusthelroynetlify-bot
andauthoredAug 8, 2024··
feat: pass accountId to runBuild and resolve config (#5794)
* feat: ensure accountID is passed to runBuild and resolve config * fix: revert src fix * fix: remove logs * fix: revert package-lock change --------- Co-authored-by: Netlify Bot <bot@netlify.com>
1 parent c1afa03 commit 1eb6288

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed
 

‎packages/build/src/core/build.ts

+2
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ const tExecBuild = async function ({
5454
apiHost,
5555
token,
5656
siteId,
57+
accountId,
5758
context,
5859
branch,
5960
baseRelDir,
@@ -96,6 +97,7 @@ const tExecBuild = async function ({
9697
apiHost,
9798
token,
9899
siteId,
100+
accountId,
99101
context,
100102
branch,
101103
baseRelDir,

‎packages/build/src/core/config.js

+2
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ export const getConfigOpts = function ({
2727
apiHost,
2828
token,
2929
siteId,
30+
accountId,
3031
context,
3132
branch,
3233
baseRelDir,
@@ -50,6 +51,7 @@ export const getConfigOpts = function ({
5051
host: apiHost,
5152
token,
5253
siteId,
54+
accountId,
5355
deployId,
5456
buildId,
5557
mode,

0 commit comments

Comments
 (0)
Please sign in to comment.