Files
linux-kernel-module-cheat/publish-gh-pages
2019-07-14 00:00:08 +00:00

13 lines
335 B
Bash
Executable File

#!/usr/bin/env bash
# https://cirosantilli.com/linux-kernel-module-cheat#github-pages
set -eu
git push
./build-doc --github-pages
git checkout gh-pages
git checkout master -- '*.png' _config.yml
cp out/README.html index.html
git add index.html
git commit --message "$(git log -n1 --pretty='%H' master)"
git push --force
git checkout -