This repository has been archived by the owner on Apr 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
.gitlab-ci.yml
44 lines (40 loc) · 1.54 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
37
38
39
40
41
42
43
44
###############################################################################
# Variables #
###############################################################################
variables:
DOKKU_HOST: 'node1.dokku.uttnetgroup.net'
PROJECT_NAME: 'integration.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:
- master
environment: production
deploy_dev:
variables:
PROJECT_NAME: 'integration-dev.uttnetgroup.fr'
<<: *deploy_definition
except:
- master
environment: Dev