From 77217340fc223b62f255a669c605c55547a2970c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Franck=20P=C3=A9rignon?= <franck.perignon@univ-grenoble-alpes.fr> Date: Mon, 9 Sep 2024 09:03:00 +0200 Subject: [PATCH] merge master --- .gitlab-ci.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index f3766bd11..749355d77 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -354,6 +354,23 @@ release_job: description: '$CI_COMMIT_TAG' + +##### +# Job run when a new tag (release) is created. +##### +release_job: + stage: release + image: registry.gitlab.com/gitlab-org/release-cli:latest + rules: + - if: $CI_COMMIT_TAG # Run this job when a tag is created + when: always + script: + - echo "running release_job" + release: # See https://docs.gitlab.com/ee/ci/yaml/#release for available properties + tag_name: '$CI_COMMIT_TAG' + description: '$CI_COMMIT_TAG' + + ########## ## DOC ## ########## -- GitLab