fix: always run stage when group & groups empty
This commit is contained in:
parent
b419c1c643
commit
9f1a097cfa
|
@ -48,7 +48,10 @@ func generateStages(confStages []conf.ConfStage, groups []string) (
|
||||||
s.Name = fmt.Sprintf("stage-%d", i)
|
s.Name = fmt.Sprintf("stage-%d", i)
|
||||||
}
|
}
|
||||||
ok := false
|
ok := false
|
||||||
if s.Group != "" {
|
if s.Group == "" && len(s.Groups) == 0 {
|
||||||
|
ok = true
|
||||||
|
}
|
||||||
|
if !ok && s.Group != "" {
|
||||||
for _, group := range groups {
|
for _, group := range groups {
|
||||||
if strings.EqualFold(group, s.Group) {
|
if strings.EqualFold(group, s.Group) {
|
||||||
ok = true
|
ok = true
|
||||||
|
|
Loading…
Reference in New Issue
Block a user