We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 726b9c8 commit 7eaf50bCopy full SHA for 7eaf50b
internal-packages/run-engine/src/engine/systems/dequeueSystem.ts
@@ -484,6 +484,7 @@ export class DequeueSystem {
484
deployment: {
485
id: result.deployment?.id,
486
friendlyId: result.deployment?.friendlyId,
487
+ imagePlatform: result.deployment?.imagePlatform,
488
},
489
run: {
490
id: lockedTaskRun.id,
packages/core/src/v3/schemas/runEngine.ts
@@ -239,6 +239,7 @@ export const DequeuedMessage = z.object({
239
deployment: z.object({
240
id: z.string().optional(),
241
friendlyId: z.string().optional(),
242
+ imagePlatform: z.string().optional(),
243
}),
244
run: z.object({
245
id: z.string(),
0 commit comments