fix: Add mkdocs config file #2
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 to Wiki | |
on: | |
push: | |
paths: | |
- docs/** | |
branches: [main] | |
# Allow manual trigger (workflow_dispatch) | |
workflow_dispatch: | |
env: | |
USER_TOKEN: ${{ secrets.WIKI_DEPLOY_TOKEN }} | |
USER_NAME: svcfmtm | |
USER_EMAIL: fmtm@hotosm.org | |
ORG: hotosm | |
REPO_NAME: ${{ github.event.repository.name }} | |
jobs: | |
publish_docs_to_wiki: | |
name: Publish Docs to Wiki | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Pull content from wiki | |
run: | | |
mkdir tmp_wiki | |
cd tmp_wiki | |
git init | |
git config user.name $USER_NAME | |
git config user.email $USER_EMAIL | |
git pull https://$USER_TOKEN@github.com/$ORG/$REPO_NAME.wiki.git | |
- name: Push content to wiki | |
run: | | |
rsync -av --delete docs/ tmp_wiki/ --exclude .git | |
cd tmp_wiki | |
git add . | |
git commit -m "docs: automated wiki update on push" | |
git push -f --set-upstream https://$USER_TOKEN@github.com/$ORG/$REPO_NAME.wiki.git master |