Skip to content

Instantly share code, notes, and snippets.

@adamgogogo
Forked from thibauts/Makefile
Created December 3, 2021 03:39
Show Gist options
  • Save adamgogogo/6ed31486cfa290b3935cdde06333deae to your computer and use it in GitHub Desktop.
Save adamgogogo/6ed31486cfa290b3935cdde06333deae 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