Last active
March 9, 2023 19:31
-
-
Save jeffdevine/13224c2bdf4a24c7125d to your computer and use it in GitHub Desktop.
Friday Deploy for Capistrano 2.x
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
before 'deploy', 'deploy:good_luck' | |
before 'deploy:migration', 'deploy:good_luck' | |
task :good_luck, roles: :app, except: { no_release: true } do | |
if Time.now.wday == 5 | |
logger.debug('') | |
logger.debug('┓┏┓┏┓┃') | |
logger.debug('┛┗┛┗┛┃\○/') | |
logger.debug('┓┏┓┏┓┃ / Friday') | |
logger.debug('┛┗┛┗┛┃ノ)') | |
logger.debug('┓┏┓┏┓┃ deploy,') | |
logger.debug('┛┗┛┗┛┃') | |
logger.debug('┓┏┓┏┓┃ good') | |
logger.debug('┛┗┛┗┛┃') | |
logger.debug('┓┏┓┏┓┃ luck!') | |
logger.debug('┃┃┃┃┃┃') | |
logger.debug('┻┻┻┻┻┻') | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment