Skip to content

Instantly share code, notes, and snippets.

@le6o
Created January 14, 2015 11:53
Show Gist options
  • Save le6o/f8fbd4494763796f4afc to your computer and use it in GitHub Desktop.
Save le6o/f8fbd4494763796f4afc to your computer and use it in GitHub Desktop.
capistrano3, prompt for git tag to deploy, defaults to last tag
set :default_tag, `git tag`.split("\n").last
ask :tag, fetch(:default_tag)
set :branch, fetch(:tag).empty? ? fetch(:default_tag) : fetch(:tag)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment