forked from ChrisdAutume/billeterie
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitlab-ci.yml
36 lines (33 loc) · 1.41 KB
/
.gitlab-ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
###############################################################################
# Variables #
###############################################################################
variables:
DOKKU_HOST: 'node1.dokku.uttnetgroup.net'
PROJECT_NAME: 'billetterie.gala.utt.fr'
###############################################################################
# Templates #
###############################################################################
.deploy_template: &deploy_definition
image: $CI_REGISTRY/sia/docker-images/deployer
stage: deploy
before_script:
# Add ssh private key $SSH_DEPLOY_KEY
- mkdir -p ~/.ssh
- eval $(ssh-agent -s)
- ssh-add <(echo "$SSH_DEPLOY_KEY")
# SSH config
- echo -e "Host *\n\tStrictHostKeyChecking no\n\n" > ~/.ssh/config
# Add dokku to known hosts
- ssh-keyscan -H $DOKKU_HOST >> ~/.ssh/known_hosts
script:
- git push dokku@$DOKKU_HOST:$PROJECT_NAME HEAD:refs/heads/master -f
###############################################################################
# Stages #
###############################################################################
stages:
- deploy
deploy_prod:
<<: *deploy_definition
only:
- /^deploy\/.*$/
environment: production