push generated docs #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: Docs | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
update_docs: | |
name: Update Docs | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install PonyC, Corral, MkDocs | |
run: | | |
mkdir -p ./ponyc | |
wget -q https://dl.cloudsmith.io/public/ponylang/releases/raw/versions/latest/ponyc-x86-64-unknown-linux-ubuntu22.04.tar.gz | |
tar xzf ponyc-x86-64-unknown-linux-ubuntu22.04.tar.gz --directory ./ponyc --strip-components=1 | |
mkdir -p ./corral | |
wget -q https://dl.cloudsmith.io/public/ponylang/releases/raw/versions/latest/corral-x86-64-unknown-linux.tar.gz | |
tar xzf corral-x86-64-unknown-linux.tar.gz --directory ./corral --strip-components=1 | |
pip install mkdocs | |
pip install mkdocs-material | |
- name: Run Tests | |
run: | | |
export PATH=`pwd`/ponyc/bin:`pwd`/corral/bin:$PATH | |
corral fetch | |
PONYC=./ponyc/bin/ponyc make test | |
- name: Build Docs | |
run: | | |
export PATH=`pwd`/ponyc/bin:`pwd`/corral/bin:$PATH | |
PONYC=./ponyc/bin/ponyc make docs | |
cd build/eohippus-docs | |
echo "site_description: Eohippus `cat ../../VERSION`-`git rev-parse --short --verify HEAD`" >> mkdocs.yml | |
python -m mkdocs build --quiet | |
- name: Checkout Docs Site | |
uses: actions/checkout@v4 | |
with: | |
repository: chalcolith/chalcolith.github.io | |
token: ${{ secrets.GITHUB_TOKEN }} | |
ref: main | |
path: chalcolith.github.io | |
fetch-depth: 0 | |
- name: Copy Files | |
run: | | |
rm -rf ./chalcolith.github.io/eohippus/* | |
cp -a ./build/eohippus-docs/site/* ./chalcolith.github.io/eohippus/ | |
- name: Commit | |
run: | | |
cd ./chalcolith.github.io/eohippus | |
git config user.name "GitHub Actions" | |
git config user.email "<>" | |
git commit -a -m "Updated Eohippus docs on `date`" | |
git push |