core/.gitlab-ci.yml
2023-03-28 17:00:48 +02:00

24 lines
466 B
YAML

---
stages:
- deploy
variables:
APP_NAME: discoursio-api
SERVER: v2.discours.io
deploy:
image: actions/ssh-keyscan
stage: deploy
environment:
name: production
url: https://v2.discours.io
only:
- main
script:
- mkdir -p ~/.ssh
- ssh-keyscan -t rsa $SERVER >> ~/.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