Releases: sapegin/shipit
Releases · sapegin/shipit
0.4.0
0.3.0
0.2.0
0.1.0
Local targets
Now you can define targets that will be executed on your local machine. For example you can deploy with rsync
:
host='myhost'
path='sites/example.com'
[deploy:local]
npm test
npm run build
rsync --archive --compress --force --delete public/ $SSH_HOST:$SSH_PATH
Local target will be executed before remote target with the same name.