Skip to content

Commit

Permalink
chore: fix knope.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
Shadow53 committed Aug 19, 2024
1 parent d5c0d9d commit 3765a39
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion knope.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down

0 comments on commit 3765a39

Please sign in to comment.