summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: cc33d9fdc5c9dd329c545a0b205ddf72d5507226 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
image: alpine:latest

deploy:
  stage: deploy
  before_script:
    - 'command -v ssh-agent >/dev/null || ( apk add --update openssh )'
    - eval $(ssh-agent -s)
    - echo "$SSH_PRIVATE_KEY" | tr -d '\r' | ssh-add -
    - mkdir -p ~/.ssh
    - chmod 700 ~/.ssh
    - ssh-keyscan $SSH_HOST >> ~/.ssh/known_hosts
    - chmod 644 ~/.ssh/known_hosts
  script:
    - ssh -p $SSH_PORT $SSH_USER@$SSH_HOST "cd repo && git stash && git pull --force origin master && ./build.sh"
  only:
    - master