From 81ada77ea2a490911da6ff5e81459a0d969f81e8 Mon Sep 17 00:00:00 2001 From: Jean-Paul Calderone <exarkun@twistedmatrix.com> Date: Thu, 13 Jun 2019 16:30:43 -0400 Subject: [PATCH] Try to get the deploy key working Randomly guessing custom CircleCI git implementation doesn't support custom deploy keys? --- .circleci/config.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index 92221c9d..9f650bd0 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -19,6 +19,11 @@ jobs: docker: - image: "nixos/nix:2.2.1" steps: + - run: + name: "Install Git" + command: | + nix-env -i git + - "checkout" - run: -- GitLab