Add a pipeline to build the server image.

This commit is contained in:
Tom Alexander
2024-09-29 00:19:22 -04:00
parent a2aca6d2f1
commit 0548571b6b
7 changed files with 263 additions and 31 deletions

View File

@@ -62,7 +62,7 @@ impl RemoteConfig {
.iter()
.map(|s| Regex::new(s.as_str()))
.collect::<Result<_, _>>()?;
if !push.branches.is_empty() && match_regex.iter().any(|r| r.is_match(branch)) {
if !push.branches.is_empty() && !match_regex.iter().any(|r| r.is_match(branch)) {
continue;
}