Update .gitlab-ci.yml

This commit is contained in:
Thomas Citharel 2018-10-26 11:08:22 +02:00
parent 0ec23c03d3
commit 9a045b4608
1 changed files with 6 additions and 0 deletions

View File

@ -3,6 +3,12 @@ image: alpine:latest
pages:
stage: deploy
script:
- mkdir "${HOME}/.ssh"
- chmod 700 "${HOME}/.ssh"
# The following is stupid but required for some reason
- mkdir .public
- cp -r * .public
- mv .public public
- if [ ! -z ${DEPLOYEMENT_KNOWN_HOSTS+x} ]; then echo -e "${DEPLOYEMENT_KNOWN_HOSTS}" > ${HOME}/.ssh/known_hosts; fi
- eval `ssh-agent -s`
- if [ ! -z ${DEPLOYEMENT_KEY+x} ]; then ssh-add <(echo "${DEPLOYEMENT_KEY}" | base64 --decode -i); fi