From 00776d1ba41c9c45a8d3eb6a4c4ecfb895dfe317 Mon Sep 17 00:00:00 2001 From: Antonio Sanchez Date: Mon, 9 Dec 2024 20:18:06 -0800 Subject: [PATCH] Remove branch name from nightly tag job. --- ci/deploy.gitlab-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ci/deploy.gitlab-ci.yml b/ci/deploy.gitlab-ci.yml index 9ffb3e40e..be03a9983 100644 --- a/ci/deploy.gitlab-ci.yml +++ b/ci/deploy.gitlab-ci.yml @@ -1,5 +1,5 @@ # Push a nightly tag if the pipeline succeeded. -deploy:tag: +deploy:tag:nightly: stage: deploy image: ubuntu:latest before_script: @@ -8,7 +8,7 @@ deploy:tag: - apt-get install -y --no-install-recommends git script: - git tag -f nightly $CI_COMMIT_SHORT_SHA - - git push $EIGEN_CI_GIT_PUSH_URL $CI_COMMIT_BRANCH tag nightly + - git push $EIGEN_CI_GIT_PUSH_URL tag nightly tags: - linux - eigen-runner