diff --git a/flake.nix b/flake.nix index de60522..49a4455 100644 --- a/flake.nix +++ b/flake.nix @@ -47,7 +47,7 @@ yamllint = { enable = true; settings = { - configPath = "${./.yamllint.yml}"; + configPath = "${./yamllint.yml}"; }; }; commitizen.enable = true; @@ -98,10 +98,10 @@ # Generate a private and public cosign key for container signing usage! def main [--keep] { echo "DO NOT add any password, this will break your CI jobs!" - ${pkgs.cosign}/bin/cosign generate-key-pair - open cosign.key | ${pkgs.lib.getExe pkgs.gh} secret set SIGNING_SECRET --app actions + ${pkgs.cosign}/bin/cosign generate-key-pair + open cosign.key | ${pkgs.lib.getExe pkgs.gh} secret set SIGNING_SECRET --app actions if $keep == null { - rm cosign.key + rm cosign.key } } ''; diff --git a/.yamllint.yml b/yamllint.yml similarity index 100% rename from .yamllint.yml rename to yamllint.yml