Last active
August 6, 2019 05:50
-
-
Save limistah/634c885c98f495e8e26ca7f8023f3fc9 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: 2 | |
jobs: | |
staging: | |
docker: | |
- image: circleci/node:10 | |
steps: | |
- run: | |
name: Deploy API | |
command: ssh -o "StrictHostKeyChecking no" [email protected] "cd ~/app; git pull; yarn install --production; sudo systemctl restart dkapi" | |
workflows: | |
version: 2 | |
staging: | |
jobs: | |
- staging: | |
filters: | |
branches: | |
only: develop |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment