From af59ada0accc722ebd930ec65340156dbe62ffa1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Antonio=20S=C3=A1nchez?= Date: Tue, 10 Dec 2024 22:48:29 +0000 Subject: [PATCH] Use alpine for deploying nightly tag. --- ci/deploy.gitlab-ci.yml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/ci/deploy.gitlab-ci.yml b/ci/deploy.gitlab-ci.yml index be03a9983..e65395adf 100644 --- a/ci/deploy.gitlab-ci.yml +++ b/ci/deploy.gitlab-ci.yml @@ -1,14 +1,13 @@ # Push a nightly tag if the pipeline succeeded. deploy:tag:nightly: stage: deploy - image: ubuntu:latest + image: alpine:edge + dependencies: [] before_script: - - export DEBIAN_FRONTEND=noninteractive - - apt-get update -y - - apt-get install -y --no-install-recommends git + - apk add git script: - git tag -f nightly $CI_COMMIT_SHORT_SHA - - git push $EIGEN_CI_GIT_PUSH_URL tag nightly + - git push -f $EIGEN_CI_GIT_PUSH_URL tag nightly tags: - linux - eigen-runner