blob: d6444464e3d072b6a1cbab378a1a383e6b5d16cb (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
clean:
-rm -Rf _site/
run: clean
bundle exec jekyll serve --incremental --drafts
publish:
cp _includes/site.min.css assets/site.min.css # for service worker
git add .
git commit -m "content update"
git push
|