From 0bd308b9e3b57eba7a84f8f159dc58d7e8cb4806 Mon Sep 17 00:00:00 2001 From: Tim Schubert Date: Tue, 19 Apr 2022 18:30:40 +0000 Subject: [PATCH] update .gitlab-ci.yml file --- .gitlab-ci.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..3f23c72 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,11 @@ +stages: # List of stages for jobs, and their order of execution + - update + +update: + stage: update + before_script: + - git config --global user.email "git@git.fginfo.tu-bs.de" + - git config --global user.name "Gitlab CI" + script: + - ./update < pads.txt + - git push "https://${GITLAB_USER_NAME}:${CI_ACCESS_TOKEN}@${CI_REPOSITORY_URL#*@}" "HEAD:${CI_COMMIT_REF_NAME}" -o skip-ci \ No newline at end of file