Files
bqkc/rakelib/deploy.rake
Nasir Anthony Montalvo 526096840e Initial commit
2025-11-13 14:48:58 -06:00

12 lines
383 B
Ruby

###############################################################################
# TASK: deploy
#
# shortcut to deploy jekyll site using the production environment
###############################################################################
desc 'Build site with production env'
task :deploy do
ENV['JEKYLL_ENV'] = 'production'
system('bundle', 'exec', 'jekyll', 'build')
end