From ee594ad03a511072e4dcacbfb7ee501125b988a1 Mon Sep 17 00:00:00 2001 From: Samruddhi Khandale Date: Mon, 8 Jul 2024 14:55:00 -0700 Subject: [PATCH] Fix release pipeline (#1117) --- build/src/push.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/build/src/push.js b/build/src/push.js index 0e594fab8..5069d4f9a 100644 --- a/build/src/push.js +++ b/build/src/push.js @@ -63,7 +63,11 @@ async function push(repo, release, updateLatest, registry, registryPath, stubReg 'acr', 'login', '--name', - registryName + registryName, + '--username', + '$TOKEN_NAME', + '--password', + '$PASSWORD' ], spawnOpts); console.log(`**** Pushing ${currentJob['id']}: ${currentJob['variant']} ${release} ****`);