Created
October 20, 2011 10:20
-
-
Save carcer/1300834 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
zip :zip, :project_name do |zip, args| | |
zip_name = [args.project_name, (ENV['BUILD_NUMBER'] unless ENV['BUILD_NUMBER']), Time.now.strftime("%Y-%m-%d-%M")].compact.join("-") | |
zip.directories_to_zip BUILD_PATH | |
zip.output_file = "#{zip_name}.zip" | |
zip.output_path = PACKAGE_OUTPUT | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment