core/.gitlab-ci.yml
2023-03-28 18:03:46 +02:00

26 lines
486 B
YAML

---
stages:
- deploy
variables:
APP_NAME: discoursio-api
SERVER: v2.discours.io
deploy:
image:
name: alpine/git
entrypoint: [""]
stage: deploy
environment:
name: production
url: https://v2.discours.io
only:
- main
script:
- mkdir ~/.ssh
- echo "${HOST_KEY}" > ~/.ssh/known_hosts
- echo "${SSH_PRIVATE_KEY}" > ~/.ssh/id_rsa
- chmod 0400 ~/.ssh/id_rsa
- git remote add dokku dokku@$SERVER:$APP_NAME
- git push dokku HEAD:main