Set up Github Pages autobuild
This commit is contained in:
parent
90e65a5b80
commit
dc3517f386
1 changed files with 27 additions and 0 deletions
27
.github/workflows/build_docs.yml
vendored
Normal file
27
.github/workflows/build_docs.yml
vendored
Normal file
|
@ -0,0 +1,27 @@
|
|||
name: Build the Python doc-gen
|
||||
|
||||
on: [push]
|
||||
|
||||
jobs:
|
||||
build_docs:
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
contents: write
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- name: Generate file
|
||||
run: doc/collate_data.py src/main/resources hexcasting thehexbook index.html.uncommitted
|
||||
- name: Check out gh-pages
|
||||
uses: actions/checkout@v3
|
||||
with:
|
||||
clean: false
|
||||
ref: gh-pages
|
||||
- name: Overwrite file and commmit
|
||||
run: |
|
||||
mv index.html.uncommitted index.html
|
||||
git config user.name "Documentation Generation Bot"
|
||||
git config user.email "noreply@github.com"
|
||||
git add index.html
|
||||
git diff-index --quiet HEAD || git commit -m "Update docs at index.html from $GITHUB_HEAD_REF"
|
||||
- name: Upload changes
|
||||
run: git push
|
Loading…
Reference in a new issue