Skip to content

0.1.0

Compare
Choose a tag to compare
@sapegin sapegin released this 18 Feb 07:48
· 20 commits to master since this release

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.