feat: I like Hind too much, I wanna keep it for my own site :') #4
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
name: Publish docs | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
name: Build docs | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.10" | |
- name: Install package and dependencies | |
run: | | |
python3 -m pip install mkdocs | |
python3 -m pip install git+https://github.com/TEParsons/mkdocs-landing | |
- name: Build docs | |
run: | | |
mkdocs build | |
- name: Commit | |
run: | | |
git add --all | |
git config --global user.email "[email protected]" | |
git config --global user.name "Todd Parsons" | |
git commit --all -m "sys: Build documentation" | |
- name: Push | |
uses: ad-m/github-push-action@master | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
branch: gh-pages | |
force: true |