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

fix(pre-commit): invalid path for yamllint store path #4

Merged
merged 1 commit into from
Mar 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.