Capistrano deploy functionality for Git Runner
Added deployment functionality (using capistrano) to be integrated into Git Runner
$ gem install git-runner-deploy
At the top of your deploy file (e.g. config/deploy.rb):
# GitRunner: Deploy
# GitRunner: Deploy master staging
Capistrano multistage configurations are automatically detected. In the case of multistage the branch name is used to determine which stage should be deployed. In the case of the master branch the stage name production
is used. For every other branch that branches name is used as the deploy stage, e.g:
master
->cap production deploy
staging
->cap staging deploy
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request