Skip to content
Snippets Groups Projects
Forked from Vincent MAZENOD / blog.limos.fr
313 commits behind the upstream repository.
.gitlab-ci.yml 935 B
image: ubuntu:xenial

cache:
  paths:
    - output/ # Node modules and dependencies

before_script:
  - 'which ssh-agent || ( apt-get update -y && apt-get install openssh-client -y )'
  - eval $(ssh-agent -s)
  - ssh-add <(echo "$SSH_PRIVATE_KEY")
  - mkdir -p ~/.ssh
  - '[[ -f /.dockerenv ]] && echo -e "Host *\n\tStrictHostKeyChecking no\n\n" > ~/.ssh/config'

build:
  stage: build
  script:
    - apt-get install -y --force-yes build-essential python-dev python-pip git
    - git submodule update --recursive --remote
    - pip install --editable .
    - pelican content

  artifacts:
    untracked: true

deploy:
  stage: deploy
  dependencies:
    - build
  script:
    - apt-get install -y --force-yes rsync
    - scp -r output/* mazenod@192.168.100.59:~/public_html/
    - rsync -az --exclude '_' -e ssh output/ mazenod@192.168.100.59:~/public_html/
    - rsync -az --exclude '_' -e ssh output/ $USERNAME@$HOST:~/public_html/