From 119443e166eeaef09addaa24c0c4aecd7974d54e Mon Sep 17 00:00:00 2001 From: Kevin Ding Date: Sat, 6 Jul 2024 01:20:38 -0400 Subject: [PATCH] fix: builder blueprint workflow build aciton image issue --- .../blueprint-builder/src/build-release-workflow.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/packages/blueprints/blueprint-builder/src/build-release-workflow.ts b/packages/blueprints/blueprint-builder/src/build-release-workflow.ts index bbdfdfaf6..6fc75afa8 100644 --- a/packages/blueprints/blueprint-builder/src/build-release-workflow.ts +++ b/packages/blueprints/blueprint-builder/src/build-release-workflow.ts @@ -45,6 +45,10 @@ export function buildReleaseWorkflow(workflow: WorkflowBuilder, options?: { incl ], }, steps: ["if $IS_RELEASE_COMMIT; then echo 'This is a release commit, skipping'; else chmod +x release.sh && ./release.sh; fi"], + container: { + Registry: 'CODECATALYST', + Image: 'CodeCatalystLinux_x86_64:2024_03', + }, }); if (publishingEnabled) {