diff --git a/nix/modules/workspace.nix b/nix/modules/workspace.nix index 009ec310..31884324 100644 --- a/nix/modules/workspace.nix +++ b/nix/modules/workspace.nix @@ -7,7 +7,7 @@ let then pkgs.openssl # pkgsStatic is considered a cross build and this is not yet supported else pkgs.pkgsStatic.openssl; - nonCargoBuildFiles = path: _type: builtins.match ".*conductor-config.yaml$" path != null; + nonCargoBuildFiles = path: _type: builtins.match ".*(conductor-config.yaml|conductor-config-ci.yaml)$" path != null; includeFilesFilter = path: type: (craneLib.filterCargoSources path type) || (nonCargoBuildFiles path type);