From d09aa10626f5cfc41c3d991264f64878c13935ac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Konrad=20V=C3=B6lkel?= <konrad.voelkel@hhu.de> Date: Fri, 21 Feb 2025 11:25:00 +0000 Subject: [PATCH] Using wget --no-check-certificate for now just to see whether it works at all. Probably want to change that at some later point by having another stage that downloads and also precomputes the embeddings. --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 5e377d5..c53c939 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -7,7 +7,7 @@ pages: script: - mkdir .public - cp -r ./* .public - - wget https://www.heicad.hhu.de/lehre/masters-programme-ai-and-data-science/faq/ .public/FAQ.html + - wget --no-check-certificate https://www.heicad.hhu.de/lehre/masters-programme-ai-and-data-science/faq/ .public/FAQ.html - rm -rf public - mv .public public -- GitLab