From 316f48519d885fab547ca63b82fb0753ed29ef77 Mon Sep 17 00:00:00 2001 From: Yngve Levinsen <yngve.levinsen@ess.eu> Date: Thu, 18 Jun 2020 16:00:20 +0200 Subject: [PATCH] attempt at auto-release on gitlab --- .gitlab-ci.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index f733880..f6cdddb 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -57,3 +57,12 @@ release-pypi: - twine upload dist/* only: - tags + +auto-release: + image: inetprocess/gitlab-release + stage: deploy + only: + - tags + script: + - TAG_MESSAGE=`git tag -n9 -l ${CI_COMMIT_TAG} | sed -e "s/^${CI_COMMIT_TAG} //"` + - gitlab-release --message "Automatic release of ${CI_COMMIT_TAG} from ${CI_COMMIT_SHORT_SHA}\n\n${TAG_MESSAGE}" -- GitLab