diff --git a/knope.toml b/knope.toml index d689d70..52f0c33 100644 --- a/knope.toml +++ b/knope.toml @@ -10,11 +10,23 @@ type = "PrepareRelease" [[workflows.steps]] type = "Command" -command = "cargo update -w && git add Cargo.lock && git commit -m \"chore: prepare release $version\" && git push" +command = "cargo update -w" + +[[workflows.steps]] +type = "Command" +command = "git add Cargo.lock" + +[[workflows.steps]] +type = "Command" +command = "git commit -m \"chore: prepare release $version\"" [workflows.steps.variables] "$version" = "Version" +[[workflows.steps]] +type = "Command" +command = "git push" + [[workflows.steps]] type = "Release"