Fix code annotation rendering #285
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: Deploy Site | |
on: | |
push: | |
paths: | |
- 'docs/**' | |
- '**.yml' | |
- 'theme/**' | |
- 'requirements.txt' | |
- '!.github/**' | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Chekout code | |
uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.x | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip setuptools | |
python -m pip install -r requirements.txt | |
- name: Deploy Files | |
run: | | |
git config user.name "github-actions[bot]" | |
git config user.email "41898282+github-actions[bot]@users.noreply.github.com" | |
git remote add gh-token "https://github.com/purrbot-site/Docs.git" | |
git fetch gh-token && git fetch gh-token gh-pages:gh-pages | |
python -m mkdocs gh-deploy --clean -m "Deploying Docs to GitHub Pages (${GITHUB_SHA:0:7})" --remote-name gh-token | |
git push gh-token gh-pages | |
sendMsg: | |
needs: [build] | |
if: success() | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
- name: Send Discord Notification | |
uses: Sniddl/discord-commits@v1.6 | |
with: | |
webhook: ${{ secrets.DISCORD_WEBHOOK }} | |
embed: | | |
{ | |
"color": 65280, | |
"title": "Documentation updated!", | |
"url": "https://github.com/purrbot-site/Docs", | |
"footer": { | |
"text": "Page built using MkDocs" | |
}, | |
"fields": [ | |
{ | |
"name": "Commit", | |
"value": "[`${{ github.event.after }}`](${{ github.event.compare }})", | |
"inline": false | |
}, | |
{ | |
"name": "Source", | |
"value": "https://github.com/purrbot-site/Docs", | |
"inline": false | |
}, | |
{ | |
"name": "Site", | |
"value": "https://docs.purrbot.site", | |
"inline": false | |
} | |
] | |
} |