nix/gitlab-ci: deploy without a repo
This commit is contained in:
parent
726e9024bd
commit
91e8579dc4
1 changed files with 4 additions and 1 deletions
|
@ -45,7 +45,7 @@ let
|
|||
];
|
||||
timeout = "6h";
|
||||
artifacts = {
|
||||
paths = [ "systems.json" ];
|
||||
paths = [ "systems.json" "hack/populate_secrets.sh" "hack/deploy.sh" ];
|
||||
expire_in = "30 days";
|
||||
};
|
||||
tags = [ "cacher" ];
|
||||
|
@ -94,6 +94,9 @@ let
|
|||
environment = {
|
||||
name = machName;
|
||||
};
|
||||
variables = {
|
||||
GIT_STRATEGY = "none";
|
||||
};
|
||||
allow_failure = true;
|
||||
|
||||
only.refs = [ "branch/default" ];
|
||||
|
|
Loading…
Reference in a new issue