Skip to content
Snippets Groups Projects
Commit ce221d2a authored by Marco De Donno's avatar Marco De Donno
Browse files

Delete .gitlab-ci.yml

parent 1b6997ca
Branches master
No related tags found
No related merge requests found
stages:
- doc
- deploy
doc:
stage: doc
script:
- cd ./doc
- make html
- scp -o StrictHostKeyChecking=no -i ${PROD_KEY} -r ./build/html/* ${PROD_USER}@${PROD_HOST}:${PROD_HTML_DIRECTORY}
only:
- develop
deploy:
stage: deploy
script:
- echo Deploying production on ${PROD_HOST}...
- ssh -o StrictHostKeyChecking=no -i ${PROD_KEY} ${PROD_USER}@${PROD_HOST} ${PROD_SCRIPT} ${CI_COMMIT_REF_NAME}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment