remove old docs files #14
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: Build Docs | |
run: | | |
export PATH=`pwd`/ponyc/bin:`pwd`/corral/bin:$PATH | |
corral fetch | |
PONYC=./ponyc/bin/ponyc make docs | |
cd build/eohippus-docs | |
export SITE_NAME="Eohippus `cat ../../VERSION`-`git rev-parse --short --verify HEAD`" | |
sed -i "s/site_name:.*/site_name: $SITE_NAME/" mkdocs.yml | |
python -m mkdocs build --quiet | |
- name: Checkout Docs Site | |
uses: actions/checkout@v4 | |
with: | |
repository: chalcolith/chalcolith.github.io | |
token: ${{ secrets.DOCS_SITE_ACCESS_TOKEN }} | |
ref: main | |
path: chalcolith.github.io | |
fetch-depth: 0 | |
- name: Copy Files and Commit | |
run: | | |
rm -rf ./chalcolith.github.io/eohippus/* | |
cd ./chalcolith.github.io | |
git add . | |
cd .. | |
cp -R ./build/eohippus-docs/site/* ./chalcolith.github.io/eohippus/ | |
git config user.name "Eohippus GitHub Actions" | |
git config user.email "<>" | |
git add . | |
git commit -m "Updated Eohippus documentation on `date`" | |
git push |