This repository has been archived on 2023-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
python-blog/.gitlab-ci.yml

25 lines
596 B
YAML
Raw Normal View History

2020-12-26 16:49:47 +01:00
stages:
- build
- test
- publish
- deploy
2020-12-26 18:05:50 +01:00
deploy:
stage: deploy
image: ubuntu
before_script:
- 'command -v ssh-agent >/dev/null || ( apt-get update -y && apt-get install openssh-client -y --no-install-recommends )'
- eval $(ssh-agent -s)
- echo "$SSH_PRIVATE_KEY" | tr -d '\r' | ssh-add -
- mkdir -p ~/.ssh
- chmod 700 ~/.ssh
2020-12-26 18:09:43 +01:00
- echo "$SSH_CONFIG" > ~/.ssh/config
2020-12-26 18:13:06 +01:00
- chmod 644 ~/.ssh/config
- echo "$SSH_KNOWN_HOSTS" >> ~/.ssh/known_hosts
- chmod 644 ~/.ssh/known_hosts
2020-12-26 18:05:50 +01:00
script:
2020-12-26 18:13:06 +01:00
- ssh blog "/home/gaugendre/blog/update"
2020-12-26 18:05:50 +01:00
only:
- master