From f0d4c81ce418d7b2213d8b38e0b1a1d26268e4f4 Mon Sep 17 00:00:00 2001 From: Michael Blaschek <michael.blaschek@univie.ac.at> Date: Wed, 2 Oct 2024 11:32:51 +0000 Subject: [PATCH] Update .gitlab-ci.yml file --- .gitlab-ci.yml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 6faf96f..120138a 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -17,21 +17,19 @@ static-copy: build: image: harbor.wolke.img.univie.ac.at/podman/flexextract_sphinx:latest stage: dynamic - when: manual script: # --strict is too strict :) - - cd For_Developers/Sphinx + - cd For_developers/Sphinx - make html artifacts: paths: - - For_Developers/Sphinx/Documentation/html/* + - For_developers/Sphinx/Documentation/html/* expire_in: 60 seconds deploy: stage: dynamic image: harbor.wolke.img.univie.ac.at/podman/alpine-sshpass:latest - when: manual needs: - build script: - - sshpass -p "$WOLKE_PASSWORD" rsync -autv --delete -e "ssh -o StrictHostKeyChecking=no" ./For_Developers/Sphinx/Documentation/html/* "$WOLKE_USER@wolke.img.univie.ac.at:/var/www/flexpart/flexextract" + - sshpass -p "$WOLKE_PASSWORD" rsync -autv --delete -e "ssh -o StrictHostKeyChecking=no" ./For_developers/Sphinx/Documentation/html/* "$WOLKE_USER@wolke.img.univie.ac.at:/var/www/flexpart/flexextract" -- GitLab