Skip to content

Instantly share code, notes, and snippets.

@xarimanx
Created December 7, 2015 11:47
Show Gist options
  • Save xarimanx/914f5a391821d98aafce to your computer and use it in GitHub Desktop.
Save xarimanx/914f5a391821d98aafce to your computer and use it in GitHub Desktop.
easily deploy from Git tags
Are you using Capistrano and Git and want to easily deploy from Git tags? It couldn't be simpler
Using Git, tag a new release:
git tag -a 09.10.02.01 -m "Tagging a release"
You can use git tag to list your tags:
git tag
09.10.01.01
09.10.01.02
09.10.02.01
Now make sure you push your tags to the central repository:
git push origin --tags
Now in your Capsitrano deploy script:
set :branch do
default_tag = `git tag`.split("\n").last
tag = Capistrano::CLI.ui.ask "Tag to deploy (make sure to push the tag first): [#{default_tag}] "
tag = default_tag if tag.empty?
tag
end
This will, on deployment, ask you which tag you want to deploy from (defaulting to the most recent tag).
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment