docs: Added 2025.10.2 Release Notes #156
This file contains hidden or 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 Mkdocs | |
| on: | |
| push: | |
| branches: [ master ] | |
| tags: [ '*' ] | |
| pull_request: | |
| branches: [ master ] | |
| jobs: | |
| build: | |
| name: Build | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| with: | |
| fetch-depth: 0 | |
| - name: Set up Python 3.11 | |
| uses: actions/setup-python@v2 | |
| with: | |
| python-version: 3.11 | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install -r requirements.txt | |
| - name: Build mkdocs | |
| run: mkdocs build | |
| - name: Deploy mkdocs | |
| if: github.event_name != 'pull_request' | |
| env: | |
| GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| REPO_SLUG: ${{ github.repository }} | |
| run: | | |
| git config user.name "Kodular Bot" | |
| git config user.email "github@kodular.io" | |
| git remote add gh-token "https://KodularCreator:$GH_TOKEN@github.com/$REPO_SLUG.git" | |
| git fetch gh-token && git fetch gh-token gh-pages:gh-pages | |
| mkdocs gh-deploy -v --clean --remote-name gh-token |