Skip to content
This repository has been archived by the owner on May 11, 2024. It is now read-only.

Commit

Permalink
fix(pre-commit): invalid path for yamllint store path
Browse files Browse the repository at this point in the history
  • Loading branch information
tulilirockz committed Mar 25, 2024
1 parent 12860f5 commit 003d1a5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
yamllint = {
enable = true;
settings = {
configPath = "${./.yamllint.yml}";
configPath = "${./yamllint.yml}";
};
};
commitizen.enable = true;
Expand Down Expand Up @@ -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
}
}
'';
Expand Down
File renamed without changes.

0 comments on commit 003d1a5

Please sign in to comment.