Skip to content

Commit

Permalink
Merge pull request #531 from hannobraun/release
Browse files Browse the repository at this point in the history
Try again to trigger release for v0.6.0
  • Loading branch information
hannobraun authored May 5, 2022
2 parents 3cc00e3 + dae126f commit 64c9ff6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/release-operator/src/release.rs
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ impl Release {
let commit: String = cmd_lib::run_fun!(git log -n 1 "${sha}")?;

// A release commits need to contain a semver version number.
let version = Regex::new(r"(v?\d+.\d+.\d+)")?
let version = Regex::new(r"(\d+\.\d+\.\d+)")?
.find_iter(&commit)
.inspect(|version| {
log::info!(
Expand Down

0 comments on commit 64c9ff6

Please sign in to comment.