grafana -> notification-provider -> mattermost | see https://gitlab.fedy95.com/dev/notification-provider
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

19 lines
429 B

---
deploy:
stage: deploy
only:
- tags
tags:
- ssh-1.160
variables:
GIT_STRATEGY: none
before_script:
- echo "$DOCKER_PASS" | docker login -u "$DOCKER_USER" --password-stdin "$DOCKER_URL"
script:
- cd /home/fedy95/gitlab/${CI_PROJECT_PATH}
- git pull
- make restart
- make cleanup
after_script:
- docker logout "$DOCKER_URL"
...