diff --git a/.github/actions/node/builder/index.js b/.github/actions/node/builder/index.js index 55815a3c00..8dbc0550c9 100644 --- a/.github/actions/node/builder/index.js +++ b/.github/actions/node/builder/index.js @@ -26530,13 +26530,13 @@ const deployStep = async () => { else { servicesToUpdate.push(service); } - core.info(`Deploying service: ${service} with image: ${image}:${tag} to deployments: ${servicesToUpdate.join(', ')}`); + core.info(`Deploying service: ${service} with image: ${builderDefinition.dockerRepository}:${tag} to deployments: ${servicesToUpdate.join(', ')}`); for (const toDeploy of servicesToUpdate) { exitCode = await exec.exec('kubectl', [ 'set', 'image', `deployments/${toDeploy}-dpl`, - `${toDeploy}=${image}:${tag}`, + `${toDeploy}=${builderDefinition.dockerRepository}:${tag}`, ]); if (exitCode !== 0) { core.error(`Failed to deploy service: ${service} to deployment: ${toDeploy}`); diff --git a/.github/actions/node/src/steps.ts b/.github/actions/node/src/steps.ts index 05ced5de99..6f18a348fe 100644 --- a/.github/actions/node/src/steps.ts +++ b/.github/actions/node/src/steps.ts @@ -199,9 +199,9 @@ export const deployStep = async (): Promise => { } core.info( - `Deploying service: ${service} with image: ${image}:${tag} to deployments: ${servicesToUpdate.join( - ', ', - )}`, + `Deploying service: ${service} with image: ${ + builderDefinition.dockerRepository + }:${tag} to deployments: ${servicesToUpdate.join(', ')}`, ) for (const toDeploy of servicesToUpdate) { @@ -209,7 +209,7 @@ export const deployStep = async (): Promise => { 'set', 'image', `deployments/${toDeploy}-dpl`, - `${toDeploy}=${image}:${tag}`, + `${toDeploy}=${builderDefinition.dockerRepository}:${tag}`, ]) if (exitCode !== 0) {