From 91e8579dc41fc909db82ff1309ebd0eb596d7db1 Mon Sep 17 00:00:00 2001 From: Luke Granger-Brown Date: Sun, 2 Apr 2023 22:35:20 +0000 Subject: [PATCH] nix/gitlab-ci: deploy without a repo --- nix/gitlab-ci/default.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/nix/gitlab-ci/default.nix b/nix/gitlab-ci/default.nix index 4130543eda..6eac750d09 100644 --- a/nix/gitlab-ci/default.nix +++ b/nix/gitlab-ci/default.nix @@ -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" ];