Update .gitlab-ci.yml file

This commit is contained in:
Joey Hafner 2022-02-10 17:45:07 +00:00
parent 032c3ea222
commit 40d837e948

View File

@ -10,12 +10,14 @@ before_script:
- eval $(ssh-agent -s) - eval $(ssh-agent -s)
- ssh-add <(echo "$SSH_PRIVATE_KEY") - ssh-add <(echo "$SSH_PRIVATE_KEY")
- mkdir -p ~/.ssh - mkdir -p ~/.ssh
- '[[ -f /.dockerenv ]] && echo -e "Host *\n\tStrickHostKeyChecking no\n\n" > ~/.ssh/config' - '[[ -f /.dockerenv ]] && echo -e "Host *\n\tStrictHostKeyChecking no\n\n" > ~/.ssh/config'
server-deploy: server-deploy:
stage: deploy stage: deploy
when: manual when: manual
only:
- "server/"
script: script:
- ssh joey@joey-server "cd /home/joey && git archive --remote=ssh://git@gitlab.jafner.net:2229/Jafner/homelab.git main server/ | tar xvf -" - ssh joey@joey-server "cd /home/joey && git archive --remote=ssh://git@gitlab.jafner.net:2229/Jafner/homelab.git main server/ | tar xvf -"
- ssh joey@joey-server "cp -r server/config/* ../docker_config/" - ssh joey@joey-server "cp -r server/config/* ../docker_config/"