File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -270,7 +270,7 @@ const EnvironmentSchema = z.object({
270270 DEPLOY_REGISTRY_USERNAME : z . string ( ) . optional ( ) ,
271271 DEPLOY_REGISTRY_PASSWORD : z . string ( ) . optional ( ) ,
272272 DEPLOY_REGISTRY_NAMESPACE : z . string ( ) . default ( "trigger" ) ,
273- DEPLOY_BUILD_PLATFORM : z . string ( ) . default ( "linux/amd64" ) ,
273+ DEPLOY_IMAGE_PLATFORM : z . string ( ) . default ( "linux/amd64" ) ,
274274 DEPLOY_TIMEOUT_MS : z . coerce
275275 . number ( )
276276 . int ( )
Original file line number Diff line number Diff line change @@ -104,7 +104,7 @@ export class InitializeDeploymentService extends BaseService {
104104 triggeredById : triggeredBy ?. id ,
105105 type : payload . type ,
106106 imageReference : imageRef ,
107- imagePlatform : env . DEPLOY_BUILD_PLATFORM ,
107+ imagePlatform : env . DEPLOY_IMAGE_PLATFORM ,
108108 git : payload . gitMeta ?? undefined ,
109109 } ,
110110 } ) ;
You can’t perform that action at this time.
0 commit comments