From 08024ba9310a29768ec2645843a18b723de90498 Mon Sep 17 00:00:00 2001 From: darthsharp <48331467+darthsharp@users.noreply.github.com> Date: Sun, 1 Jun 2025 16:18:34 +0200 Subject: [PATCH] Switch dependency to nxTargets in publish task Updated the `dependsOn` property in the publish task to rely on `nxTargets` instead of `setReleaseVersion`. This change aligns the task dependency with the intended workflow. --- builds/ci-build/src/the-build.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builds/ci-build/src/the-build.ts b/builds/ci-build/src/the-build.ts index af10e47..4b48688 100644 --- a/builds/ci-build/src/the-build.ts +++ b/builds/ci-build/src/the-build.ts @@ -89,6 +89,6 @@ export class TheBuild extends BuildDefinition { this.logger.log('Publishing NPM package'); await this.nxTasks.releaseAndPublish('angular-tofu', 'public'); }, - dependsOn: [this.setReleaseVersion], + dependsOn: [this.nxTargets], }; }