build(deps): bump sphinx-rtd-theme from 2.0.0 to 3.0.0 (#1355) #96
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 | |
env: | |
USER_TOKEN: ${{ secrets.WIKI_ACTION_TOKEN }} | |
USER_NAME: ocpp | |
USER_EMAIL: [email protected] | |
OWNER: ${{ github.event.repository.owner.name }} | |
REPOSITORY_NAME: ${{ github.event.repository.name }} | |
jobs: | |
publish_docs_to_wiki: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Pull 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://[email protected]/$OWNER/$REPOSITORY_NAME.wiki.git | |
- name: Push wiki | |
run: | | |
rsync -av --delete docs/ tmp_wiki/ --exclude .git | |
cd tmp_wiki | |
git add . | |
git commit -m "Update Wiki content" | |
git push -f --set-upstream https://[email protected]/$OWNER/$REPOSITORY_NAME.wiki.git master |