From 53a2e85eecde97db756cc3b8942d144606aa5d09 Mon Sep 17 00:00:00 2001 From: Christian Legnitto Date: Wed, 9 Dec 2020 19:42:33 -1000 Subject: [PATCH] Make partial releases actually work. This was referencing a target that does not exist. The `-some` targets are there to merely look the the env variable for overrides --- Makefile.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.toml b/Makefile.toml index c988cbd4..3f614951 100644 --- a/Makefile.toml +++ b/Makefile.toml @@ -76,7 +76,7 @@ run_task = { name = "release-local-test-INTERNAL", fork = true } [tasks.release-some-local-test] condition = { env_set = [ "CARGO_MAKE_WORKSPACE_SKIP_MEMBERS", "RELEASE_LEVEL" ] } workspace = false -run_task = { name = "release-some-local-test-INTERNAL", fork = true } +run_task = { name = "release-local-test-INTERNAL", fork = true } # Hack to filter out crates we do not want to release.