From 38e5708ee96732effbda08be2d23e6c78ec7aa43 Mon Sep 17 00:00:00 2001 From: Klaas Kliffen <kliffen@astron.nl> Date: Tue, 3 Oct 2023 09:43:00 +0200 Subject: [PATCH] And tags is not compatible with all --- .gitlab-ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index e752a29..238e726 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -41,7 +41,8 @@ deploy-release: - git commit -m "[SKIP CI] Replace latest with tag $RELEASE" - git tag -a $RELEASE -m "[SKIP CI] Version $RELEASE created by gitlab-ci build" - git remote set-url origin git@${CI_SERVER_HOST}:${CI_PROJECT_PATH}.git - - git push --all --tags + - git push --all + - git push --tags rules: - if: '$CI_COMMIT_BRANCH =~ /^releases//' when: always -- GitLab