We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b08c51c commit c78928dCopy full SHA for c78928d
config/config.go
@@ -126,7 +126,7 @@ func (c *Config) MergeWith(other *Config) {
126
}
127
128
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) {
+ if (c.CICD != nil && c.CICD.K8s == nil && c.CICD.GithubAction == nil) || (c.Docker == nil || c.Docker.Username == nil || c.Docker.Tag == nil) {
130
c.CICD = nil
131
132
err := c.Database.Validate()
0 commit comments