Skip to content

Instantly share code, notes, and snippets.

@thibauts
Last active December 3, 2021 03:39
Show Gist options
  • Save thibauts/7d79f1afd5e957defce5 to your computer and use it in GitHub Desktop.
Save thibauts/7d79f1afd5e957defce5 to your computer and use it in GitHub Desktop.
Example Makefile publishing to gh-pages
# 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