-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* cargo release setup with hook to sync chart with cargo toml Signed-off-by: clux <[email protected]> * release 0.12.8 * gen Signed-off-by: clux <[email protected]> --------- Signed-off-by: clux <[email protected]>
- Loading branch information
Showing
6 changed files
with
26 additions
and
7 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "controller" | ||
version = "0.12.7" | ||
version = "0.12.8" | ||
authors = ["clux <[email protected]>"] | ||
edition = "2021" | ||
default-run = "controller" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Release process :: cargo-release >= 0.23 | ||
# | ||
# Dependencies: https://kube.rs/tools | ||
# | ||
# 1. cargo release minor --execute | ||
|
||
# Reference | ||
# https://github.com/sunng87/cargo-release/blob/master/docs/reference.md | ||
|
||
pre-release-replacements = [ | ||
{file="charts/doc-controller/Chart.yaml", search="appVersion: .*", replace="appVersion: {{version}}"}, | ||
] | ||
pre-release-commit-message = "release {{version}}" | ||
push = false | ||
tag = true | ||
tag-name = "{{version}}" | ||
sign-commit = true | ||
sign-tag = true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters