chore(deps): update renovate/renovate docker tag to v37.68.4 #218

Open
renovate wants to merge 1976 commits from renovate/renovate-renovate-37.x into main
2 changed files with 7 additions and 1 deletions
Showing only changes of commit 08b8e24c8c - Show all commits

View file

@ -6,3 +6,7 @@ steps:
image: registry.gitlab.com/pipeline-components/yamllint
commands:
- yamllint -c .yamllint.yaml .
- name: nix flake check
image: nixos/nix:master
commands:
- nix --extra-experimental-features nix-command --extra-experimental-features flakes flake check --no-build

View file

@ -86,7 +86,9 @@
nixosConfigurations = lib.foldr (el: acc: acc // mkConfig el) { } nixHosts;
deploy.nodes = lib.foldr (el: acc: acc // mkDeploy el) { } nixHosts;
apps.${system} = {
apps.${system} = rec {
default = deploy;
deploy = {
type = "app";
program = "${deploy-rs.packages.${system}.deploy-rs}/bin/deploy";