From 41a5e6e64583c4b6b51ed74565d9e047ec015c66 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thorsten=20Ro=C3=9Fner?= <thorsten.rossner.extern@zendis.de> Date: Mon, 4 Nov 2024 17:30:19 +0100 Subject: [PATCH] fix: Commit all extensions --- .gitlab-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index cb69abe..97c2f4f 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -87,12 +87,12 @@ update_clamav_db: - git config --global user.name "openDesk ClamAV DB Mirror" # Ensure database files are using Git LFS - - git lfs track "*.cvd" "*.cld" "*.ndb" + - git lfs track "*.cvd" "*.cld" "*.ndb" "*.cdb" "*.hdb" "*.hsb" "*.ldb" - git add .gitattributes # Check if there are any changes, add, commit, and push if needed - if ! [[ `git status --porcelain` ]]; then exit; fi - - git add *.cvd *.cld *.ndb + - git add *.cvd *.cld *.ndb *.cdb *.hdb *.hsb *.ldb - git commit -m "Update ClamAV database files on $(date)" - git push https://gitlab-ci-token:${CI_PUSH_TOKEN}@${CI_SERVER_HOST}/${CI_PROJECT_PATH}.git HEAD:${CI_COMMIT_REF_NAME} -- GitLab