Publish Documentation to GitHub Pages #119
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 Documentation to GitHub Pages | |
on: | |
push: | |
branches: | |
- master | |
schedule: | |
- cron: '0 0 * * *' | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Clone Wiki | |
run: | | |
git clone https://github.com/return-of-modding/ModdingWiki.wiki.git | |
- name: Prepare for publishing | |
id: prepare-publish | |
run: | | |
last_commit_hash_file="last_commit_hash.txt" | |
if [ ! -f $last_commit_hash_file ]; then | |
echo 0 > $last_commit_hash_file; | |
fi | |
cd ModdingWiki.wiki | |
current_commit_hash=$(bash -c 'git rev-parse HEAD') | |
cd .. | |
last_commit_hash=$(cat $last_commit_hash_file) | |
if [ "$current_commit_hash" == "$last_commit_hash" ]; then | |
echo "should-publish-new-doc=false" >> $GITHUB_OUTPUT; | |
else | |
echo "should-publish-new-doc=true" >> $GITHUB_OUTPUT; | |
rm -rf docs | |
cd ModdingWiki.wiki | |
for file in *_*.md; do file_path=${file//_//}; file_name=${file##*_}; directory_path=${file_path%/*}; mkdir -p "../docs/$directory_path"; mv "$file" "../docs/$directory_path/$file_name"; done | |
for file in *.md; do mkdir -p "../docs/"; if [[ "$file" != "Home.md" ]]; then mv "$file" "../docs/$file"; fi; done | |
cd .. | |
rm -rf ModdingWiki.wiki | |
echo $current_commit_hash > $last_commit_hash_file | |
git config --local user.email "[email protected]" | |
git config --local user.name "GitHub Action" | |
git add $last_commit_hash_file | |
git commit -m "[GitHub Action] Update last ModdingWiki commit hash" | |
git add -A | |
git commit -m "[GitHub Action] Update docs" | |
fi | |
- name: Save changes to repo | |
if: steps.prepare-publish.outputs.should-publish-new-doc == 'true' | |
uses: ad-m/github-push-action@master | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
- name: MkDocs Deploy To GitHub Pages | |
if: steps.prepare-publish.outputs.should-publish-new-doc == 'true' | |
uses: mhausenblas/[email protected] | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
CONFIG_FILE: mkdocs.yml | |
EXTRA_PACKAGES: build-base | |
REQUIREMENTS: requirements.txt |