chore: Update nix workflow and flake.lock

- Update the version of `cachix/install-nix-action` to v27 in Nix workflow
- Add setup for Attic cache and enable magic Nix cache in the workflow
- Update `flake.lock`
- Remove container build and push

Signed-off-by: Harald Hoyer <harald@matterlabs.dev>
This commit is contained in:
Harald Hoyer 2024-07-01 12:36:33 +02:00
parent da3092895b
commit c301e57b63
Signed by: harald
GPG key ID: F519A1143B3FBE32
4 changed files with 35 additions and 54 deletions

View file

@ -20,14 +20,12 @@
config.allowUnfree = true;
};
vault-auth-tee = pkgs.callPackage ./packages/vault-auth-tee.nix { };
container-vault-auth-tee = pkgs.callPackage ./packages/container-vault-auth-tee.nix { };
in
{
formatter = pkgs.nixpkgs-fmt;
packages = {
inherit vault-auth-tee;
inherit container-vault-auth-tee;
default = vault-auth-tee;
};