Skip to content

Releases: sapegin/shipit

0.4.0

08 Apr 17:46
708cc0f
Compare
Choose a tag to compare

New option to change remote host:

shipit --remote pizza.io

(#28 by @bpetri)

0.3.0

07 Nov 09:41
Compare
Choose a tag to compare

New option to change config file name (default .shipit):

shipit --config deploy.conf

(#25 by @tanrax)

0.2.0

17 Oct 07:31
Compare
Choose a tag to compare
  • Ability to turn on verbose mode for ssh command with -v command line switch (#22).
  • Search up the tree for the config file (#23).

Thanks @Asuza!

0.1.0

18 Feb 07:48
Compare
Choose a tag to compare

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.