From 5fd4aad18164c60e2b2ec4f6245f6057d8a411af Mon Sep 17 00:00:00 2001 From: Imran Hussain Date: Wed, 22 Dec 2021 19:56:36 +0000 Subject: [PATCH 1/2] Use curlimages/curl:7.80.0 for live-deploy CD --- .gitlab-ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 7b7ce80..4a97bec 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -23,6 +23,7 @@ php-syntax-check: deploy-live: stage: deploy + image: curlimages/curl:7.80.0 script: - apt update - apt install -y curl -- GitLab From 692ea76045cff0f007907fab609f596869e1bb90 Mon Sep 17 00:00:00 2001 From: Imran Hussain Date: Wed, 22 Dec 2021 19:58:33 +0000 Subject: [PATCH 2/2] Don't need to install curl on the curl docker image... --- .gitlab-ci.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 4a97bec..1055648 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -25,8 +25,6 @@ deploy-live: stage: deploy image: curlimages/curl:7.80.0 script: - - apt update - - apt install -y curl - curl --fail-with-body https://sso.sucs.org/pull.php only: - master -- GitLab