-
-
Save adamgogogo/6ed31486cfa290b3935cdde06333deae to your computer and use it in GitHub Desktop.
Example Makefile publishing to gh-pages
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Publishes the html counterpart to index.md to the repo's gh-pages branch root | |
dist/%.html: %.md | |
pandoc -f markdown -t html $< > $@ | |
build: dist/index.html | |
clean: | |
rm -rf dist/* | |
publish: build | |
git add . | |
git commit | |
git push origin master | |
git checkout gh-pages | |
git checkout master -- dist | |
git mv -f dist/* ./ | |
git rm -rf dist | |
git add . | |
git commit | |
git push origin gh-pages | |
git checkout master | |
.PHONY: build clean |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment