Skip to content

Commit bff0d8f

Browse files
committed
chore: fix dependencies in the release pipeline
The `images` step modifies files in `_out/` breaking the concurrent `save-artifacts` step. Signed-off-by: Andrey Smirnov <andrey.smirnov@siderolabs.com>
1 parent e1b2886 commit bff0d8f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.drone.jsonnet

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -687,7 +687,7 @@ local conformance_pipelines = [
687687
// Release pipeline.
688688

689689
local cloud_images = Step('cloud-images', depends_on=[e2e_docker, e2e_qemu], environment=creds_env_vars);
690-
local images = Step('images', target='images', depends_on=[iso, images_essential], environment={ IMAGE_REGISTRY: local_registry });
690+
local images = Step('images', target='images', depends_on=[iso, images_essential, save_artifacts], environment={ IMAGE_REGISTRY: local_registry });
691691
local sbcs = Step('sbcs', target='sbcs', depends_on=[images], environment={ IMAGE_REGISTRY: local_registry });
692692

693693
// TODO(andrewrynhard): We should run E2E tests on a release.

0 commit comments

Comments
 (0)