From 6f51b0b47a0fb0b11b7f4d0efa36ebbd1d34a872 Mon Sep 17 00:00:00 2001 From: Douglas Raillard Date: Tue, 31 Dec 2024 15:45:43 +0000 Subject: [PATCH] .gitlab-ci.yml: Fix github pages recipe FIX Ensure the gitlab-runner package can be installed without interactive confirmation. --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index fb0752e16..93275b86a 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -216,7 +216,7 @@ pages: # This avoids the error: Missing gitlab-runner. Uploading artifacts is disabled. # https://docs.gitlab.com/runner/install/linux-repository.html - curl -L "https://packages.gitlab.com/install/repositories/runner/gitlab-runner/script.deb.sh" | sudo bash - - sudo apt-get install gitlab-runner + - sudo apt-get -y install gitlab-runner script: - | -- GitLab