From a3c3e1a3edac31e86eb0b5c5a26f40a5b511119d Mon Sep 17 00:00:00 2001 From: Nico Boehr <freifunk@nicoboehr.de> Date: Fri, 25 Feb 2022 21:19:08 +0100 Subject: [PATCH] ci: do not require git pull to succeed --- .gitlab-ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index d01b7a05f..0fd961448 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -33,7 +33,8 @@ default: - git config --global user.name "FFS Buildbot" - mkdir -p ~/.ssh - cat gitlab-known-hosts >> ~/.ssh/known_hosts - - cd gluon/openwrt/dl && git pull + - cd gluon/openwrt/dl + - git pull || true - git add . && git commit -m "update DL cache" || true - git pull && git push || true -- GitLab