Make `Rake` task for production.

This commit is contained in:
Kazuhiro MUSASHI 2023-01-15 21:49:00 +09:00
parent 22d917891e
commit eee4ba7caf
1 changed files with 18 additions and 0 deletions

18
tasks/production.rake Executable file
View File

@ -0,0 +1,18 @@
#!/usr/bin/env rake
require 'find'
desc 'Deploy the hugo contents to the server'
task :prod => [ :prep ] do
sh 'hugo -e production -v --minify'
sh 'find public -type f -name "*.gz" -delete'
sh 'find public/ -type f | egrep "\.(css|js|png|jpg|html|JPG|PNG|CSS|JS|HTML)$" | xargs -n 1 -i% -P 0 sh -c "cp % %.bk && gzip % && mv %.bk %"'
sh 'ssh -p 10022 webadm@10.0.1.166 "rm -rf /var/www/everun/*"'
sh 'rsync -e "ssh -p 10022" -rltvz --omit-dir-times --delete public/ webadm@10.0.1.166:/var/www/everun'
sh 'ssh -p 10022 webadm@10.0.1.166 "rm -rf /home/webadm/works/everun/*"'
sh 'rsync -e "ssh -p 10022" -rltvz --omit-dir-times --delete public/ webadm@10.0.1.166:/home/webadm/works/everun'
end