From dad424067d0686a5092d1539c0451388d1ad51d9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Timoth=C3=A9e=20Floure?= Date: Fri, 27 Mar 2020 11:09:40 +0100 Subject: [PATCH] Fix dependency issue in CI --- .gitlab-ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index b6f3542..399a2f0 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -9,7 +9,7 @@ variables: build: stage: build before_script: - - dnf install -y hugo + - dnf install -y hugo git script: - git submodule update --init --recursive - hugo @@ -26,6 +26,7 @@ deploy: name: production url: https://status-devel.ungleich.ch/ before_script: + - dnf install -y openssh-clients # Configure the SSH Agent - eval $(ssh-agent -s) - echo "$CD_SSH_PRIVATE_KEY" | tr -d '\r' | ssh-add - > /dev/null