fix: DockerSecretsResolver - don't normalize absolute paths like /var/www/html/...
Some checks failed
Deploy Application / deploy (push) Has been cancelled
Some checks failed
Deploy Application / deploy (push) Has been cancelled
This commit is contained in:
@@ -22,6 +22,6 @@ final readonly class DefaultPathResolver implements TemplateResolverStrategy
|
||||
$this->templatePath . '/' . $template . self::TEMPLATE_EXTENSION
|
||||
);
|
||||
|
||||
return file_exists($path) ? $path : null;
|
||||
return file_exists($path->toString()) ? $path->toString() : null;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user