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: ...@@ -21,18 +21,14 @@ deploy:
GIT_REMOTE_URL: ssh://dokku@${APP_URL}:22/${APP_NAME} GIT_REMOTE_URL: ssh://dokku@${APP_URL}:22/${APP_NAME}
DOKKU_DEPLOY_BRANCH: dev DOKKU_DEPLOY_BRANCH: dev
before_script: before_script:
- eval $(ssh-agent -s)
- echo "$SSH_PRIVATE_KEY" | tr -d '\r' | ssh-add -
- mkdir -p ~/.ssh - mkdir -p ~/.ssh
- chmod 700 ~/.ssh - chmod 700 ~/.ssh
- ssh-keyscan -H ${APP_URL} >> ~/.ssh/known_hosts - echo "$SSH_PRIVATE_KEY" > ~/.ssh/id_rsa
- chmod 644 ~/.ssh/known_hosts - chmod 600 ~/.ssh/id_rsa
- echo "StrictHostKeyChecking no" >> ~/.ssh/config - echo -e "Host ${APP_URL}\n\tStrictHostKeyChecking no\n\tUserKnownHostsFile=/dev/null" > ~/.ssh/config
- chmod 600 ~/.ssh/config - chmod 600 ~/.ssh/config
script: script:
- dokku-deploy - dokku-deploy || true
after_script: after_script:
- | - sleep 5
eval $(ssh-agent -s) - ssh -i ~/.ssh/id_rsa -o ConnectTimeout=10 dokku@${APP_URL} apps:unlock ${APP_NAME} || true
echo "$SSH_PRIVATE_KEY" | tr -d '\r' | ssh-add - \ No newline at end of file
ssh 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