This repository has been archived on 2024-04-05. You can view files and clone it, but cannot push or open issues/pull-requests.
2021-09-16 17:14:17 +00:00
|
|
|
# Automatically deploy testing branch to Dokku test server on commit
|
|
|
|
# https://cvcs-score-tracker.dokku.sudoer.ch
|
|
|
|
|
2021-09-16 17:03:03 +00:00
|
|
|
image: dokku/ci-docker-image
|
|
|
|
|
|
|
|
stages:
|
|
|
|
- deploy
|
|
|
|
|
|
|
|
variables:
|
|
|
|
GIT_DEPTH: 0
|
|
|
|
|
|
|
|
deploy:
|
|
|
|
stage: deploy
|
|
|
|
only:
|
|
|
|
- testing
|
|
|
|
variables:
|
2021-11-27 03:37:44 +00:00
|
|
|
GIT_REMOTE_URL: ssh://dokku@ssh.dokku.sudoer.ch:1337/score-tracker
|
2021-09-16 17:03:03 +00:00
|
|
|
GIT_SSH_COMMAND: 'ssh -o StrictHostKeyChecking=no'
|
|
|
|
script:
|
|
|
|
- dokku-deploy
|
|
|
|
after_script:
|
|
|
|
- dokku-unlock
|