Update deploy job

This commit is contained in:
Antonio Sanchez 2024-12-07 09:19:21 -08:00
parent 7b6623af30
commit 1ac1af62ef

View File

@ -1,9 +1,14 @@
# Push a nightly tag if the pipeline succeeded. # Push a nightly tag if the pipeline succeeded.
deploy:tag: deploy:tag:
stage: deploy stage: deploy
image: ubuntu:latest
before_script:
- export DEBIAN_FRONTEND=noninteractive
- apt-get update -y
- apt-get install -y --no-install-recommends git
script: script:
- git tag nightly master - 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: tags:
- linux - linux
- eigen-runner - eigen-runner