fix(deps): update dependency io.sentry:sentry to v7.18.0 (#197) #843
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: ๐ Build & Deploy MkDocs | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
merge_group: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: ๐ฅ Checkout ${{ github.repository }} | |
uses: actions/checkout@v4 | |
- name: ๐ Setup Python 3.10 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.10" | |
- name: ๐ Install Material for MkDocs | |
run: pip install -r requirements.txt | |
- name: Generate list | |
run: | | |
chmod +x ./scripts/generate-index-list.sh | |
./scripts/generate-index-list.sh | |
# ๅทฎๅใใใใฐใจใฉใผ | |
git config core.filemode false | |
git diff --exit-code | |
- name: ๐๏ธ Build MkDocs | |
run: python -m mkdocs build --verbose --clean --strict | |
- name: ๐ค Upload Pages Artifact | |
uses: actions/upload-pages-artifact@v3 | |
with: | |
path: site | |
deploy: | |
runs-on: ubuntu-latest | |
if: github.event_name == 'push' | |
needs: build | |
permissions: | |
pages: write | |
id-token: write | |
environment: | |
name: github-pages | |
url: ${{ steps.deployment.outputs.page_url }} | |
steps: | |
- name: ๐ Deploy to GitHub Pages | |
id: deployment | |
uses: actions/deploy-pages@v4 |