nix/gitlab-ci: deploy without a repo

This commit is contained in:
Luke Granger-Brown 2023-04-02 22:35:20 +00:00
parent 726e9024bd
commit 91e8579dc4

View file

@ -45,7 +45,7 @@ let
]; ];
timeout = "6h"; timeout = "6h";
artifacts = { artifacts = {
paths = [ "systems.json" ]; paths = [ "systems.json" "hack/populate_secrets.sh" "hack/deploy.sh" ];
expire_in = "30 days"; expire_in = "30 days";
}; };
tags = [ "cacher" ]; tags = [ "cacher" ];
@ -94,6 +94,9 @@ let
environment = { environment = {
name = machName; name = machName;
}; };
variables = {
GIT_STRATEGY = "none";
};
allow_failure = true; allow_failure = true;
only.refs = [ "branch/default" ]; only.refs = [ "branch/default" ];