1
0
forked from kamat/blog

Add: deploy script

This commit is contained in:
KAMATAKI Yuya
2023-10-26 12:42:08 +09:00
parent e1c7c2f424
commit 3735d0adb7

14
rakefile Normal file
View File

@@ -0,0 +1,14 @@
task :deploy do
sh 'cobalt build'
sh 'wrangler pages deploy _site/'
end
task :clean do
sh 'cobalt clean'
end
task :build do
sh 'cobalt build'
end
task :default => :deploy