fix(pipeline): preserve package manifest ownership

This commit is contained in:
2026-08-11 17:45:16 +08:00
parent c925890848
commit db0fba5bb5
2 changed files with 12 additions and 8 deletions

View File

@@ -478,12 +478,18 @@ function stageManifestStatus(area, configPath = null) {
},
{
stage: "compress",
expected: fs.existsSync(area.outputs.glb),
expected: fs.existsSync(stageManifestPath(area, "compress")),
inputs: {},
outputs: {},
},
{
stage: "package",
expected: fs.existsSync(area.outputs.packageManifest),
inputs: {},
outputs: {
glb: area.outputs.glb,
metadata: area.outputs.metadata,
cesiumPreview: area.outputs.cesiumPreview,
packageDir: area.outputs.packageDir,
manifest: area.outputs.packageManifest,
primaryGlb: area.outputs.packagePrimaryGlb,
},
},
];