Skip to content

Commit c78928d

Browse files
authored
Quick fix (#76)
1 parent b08c51c commit c78928d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

config/config.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ func (c *Config) MergeWith(other *Config) {
126126
}
127127

128128
func (c *Config) Validate() error {
129-
if (c.CICD != nil && c.CICD.K8s == nil && c.CICD.GithubAction == nil) || (c.Docker == nil || c.Docker.Username == nil && c.Docker.Tag == nil) {
129+
if (c.CICD != nil && c.CICD.K8s == nil && c.CICD.GithubAction == nil) || (c.Docker == nil || c.Docker.Username == nil || c.Docker.Tag == nil) {
130130
c.CICD = nil
131131
}
132132
err := c.Database.Validate()

0 commit comments

Comments
 (0)