From 61b2a1c7673aa83d3ed89c01678d9f5e2cb22b03 Mon Sep 17 00:00:00 2001 From: ThetaSinner Date: Tue, 16 Jul 2024 16:22:48 +0100 Subject: [PATCH] Allow new file --- nix/modules/workspace.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);