keep-a-changelog/Rakefile
2023-03-07 15:56:06 -08:00

10 lines
205 B
Ruby

require "middleman-gh-pages"
desc "Build and publish to GitHub Pages"
task :deploy => :publish
desc "Clean build directory"
task :clean do
puts "Cleaning build/ directory"
system("rm -rf build/")
end