forked from nutomic/joinpeertube
33 lines
938 B
YAML
33 lines
938 B
YAML
image: hatsoftwares/hugo-vnu:latest
|
|
stages:
|
|
- validity-check
|
|
- deploy
|
|
|
|
validity-check:
|
|
stage: validity-check
|
|
script:
|
|
- hugo
|
|
- find public -name index.html | xargs java -jar /opt/dist/vnu.jar
|
|
|
|
deploy:
|
|
stage: deploy
|
|
script:
|
|
- hugo -b "https://joinpeertube.org"
|
|
- mkdir "${HOME}/.ssh"
|
|
- chmod 700 "${HOME}/.ssh"
|
|
- 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); fi
|
|
- if [ ! -z ${DEPLOYEMENT_KEY+x} ]; then rsync -a --delete --exclude='stats' --exclude='error' --exclude='.htaccess' public/ ${DEPLOYEMENT_USER}@${DEPLOYEMENT_HOST}:../../web/; fi
|
|
only:
|
|
- master
|
|
|
|
pages:
|
|
stage: deploy
|
|
script:
|
|
- hugo -b "https://joinpeertube.framalab.org/"
|
|
artifacts:
|
|
paths:
|
|
- public
|
|
only:
|
|
- master
|