2018-09-21 21:00:42 +00:00
|
|
|
image: framasoft/vuefs:latest
|
2018-02-28 15:33:36 +00:00
|
|
|
stages:
|
2018-02-28 15:52:25 +00:00
|
|
|
- deploy
|
2018-02-28 15:33:36 +00:00
|
|
|
|
2018-09-21 21:00:42 +00:00
|
|
|
pages:
|
|
|
|
stage: deploy
|
2018-02-28 15:33:36 +00:00
|
|
|
script:
|
2019-09-09 12:58:52 +00:00
|
|
|
- yarn install --pure-lockfile
|
2019-09-11 13:26:44 +00:00
|
|
|
- npm run build
|
2019-09-12 07:20:18 +00:00
|
|
|
- rm -r public/ && mv dist/ public/
|
2018-09-21 21:00:42 +00:00
|
|
|
artifacts:
|
|
|
|
paths:
|
2019-09-12 07:20:18 +00:00
|
|
|
- public
|
2018-09-21 21:00:42 +00:00
|
|
|
cache:
|
|
|
|
paths:
|
|
|
|
- node_modules/
|
2018-02-28 15:33:36 +00:00
|
|
|
|
2019-09-09 12:58:52 +00:00
|
|
|
#production:
|
|
|
|
#stage: deploy
|
|
|
|
#script:
|
|
|
|
#- npm install
|
|
|
|
#- npm run prod
|
|
|
|
#- cp ./public/fr/index.html ./public/index.html
|
|
|
|
#- for f in $(find -type l);do cp --remove-destination $(readlink -f $f) $f;done;
|
|
|
|
#- 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 -i); fi
|
|
|
|
#- if [ ! -z ${DEPLOYEMENT_KEY+x} ]; then cd public && echo "put -r ." | sftp ${DEPLOYEMENT_USER}@${DEPLOYEMENT_HOST}:../../web; fi
|
|
|
|
#only:
|
|
|
|
#- master
|