Commit b203779e authored by Alexandr Dzehil's avatar Alexandr Dzehil 😎

Change ci file

parent b6e408e5
Pipeline #7128 passed with stage
in 12 seconds
......@@ -21,18 +21,14 @@ deploy:
GIT_REMOTE_URL: ssh://dokku@${APP_URL}:22/${APP_NAME}
DOKKU_DEPLOY_BRANCH: dev
before_script:
- eval $(ssh-agent -s)
- echo "$SSH_PRIVATE_KEY" | tr -d '\r' | ssh-add -
- mkdir -p ~/.ssh
- chmod 700 ~/.ssh
- ssh-keyscan -H ${APP_URL} >> ~/.ssh/known_hosts
- chmod 644 ~/.ssh/known_hosts
- echo "StrictHostKeyChecking no" >> ~/.ssh/config
- echo "$SSH_PRIVATE_KEY" > ~/.ssh/id_rsa
- chmod 600 ~/.ssh/id_rsa
- echo -e "Host ${APP_URL}\n\tStrictHostKeyChecking no\n\tUserKnownHostsFile=/dev/null" > ~/.ssh/config
- chmod 600 ~/.ssh/config
script:
- dokku-deploy
- dokku-deploy || true
after_script:
- |
eval $(ssh-agent -s)
echo "$SSH_PRIVATE_KEY" | tr -d '\r' | ssh-add -
ssh dokku@${APP_URL} apps:unlock ${APP_NAME} || true
\ No newline at end of file
- sleep 5
- ssh -i ~/.ssh/id_rsa -o ConnectTimeout=10 dokku@${APP_URL} apps:unlock ${APP_NAME} || true
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment