From b639f1b6ef72af0ba97f642d24553fa9d65d312b Mon Sep 17 00:00:00 2001 From: Luca Muscariello Date: Fri, 4 Sep 2026 16:32:17 +0200 Subject: [PATCH] fix(release): release whenever main is ahead of the registry #207 bumped the workspace to 0.1.7 and merged, but its publish run failed on the Trusted Publishing requirement #208 later fixed. With release_always = false nothing retried it: release skipped every later push, and release-pr would not bump past a version crates.io has not seen. Signed-off-by: Luca Muscariello --- release-plz.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/release-plz.toml b/release-plz.toml index b4df102a..882ef8e7 100644 --- a/release-plz.toml +++ b/release-plz.toml @@ -1,5 +1,5 @@ [workspace] -release_always = false +release_always = true publish = true publish_no_verify = true publish_timeout = "30m"