From 1ac1af62ef7fa34b8b0126eb11c213a11829485a Mon Sep 17 00:00:00 2001 From: Antonio Sanchez Date: Sat, 7 Dec 2024 09:19:21 -0800 Subject: [PATCH] Update deploy job --- ci/deploy.gitlab-ci.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/ci/deploy.gitlab-ci.yml b/ci/deploy.gitlab-ci.yml index 845a688bb..6701f0811 100644 --- a/ci/deploy.gitlab-ci.yml +++ b/ci/deploy.gitlab-ci.yml @@ -1,9 +1,14 @@ # Push a nightly tag if the pipeline succeeded. deploy:tag: stage: deploy + image: ubuntu:latest + before_script: + - export DEBIAN_FRONTEND=noninteractive + - apt-get update -y + - apt-get install -y --no-install-recommends git script: - git tag nightly master - - git push https://sillyprof:$EIGEN_CI_ACCESS_TOKEN@gitlab.com/libeigen/eigen.git master tag nightly + - git push $EIGEN_CI_GIT_PUSH_URL master tag nightly tags: - linux - eigen-runner