chore(deps): update dependency asgiref to v3.9.2 (#432) #518
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: Sync doc assets | |
| on: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| sync-doc-assets: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/[email protected] | |
| with: | |
| fetch-depth: 0 | |
| - name: Run test | |
| uses: tj-actions/remark@v3 | |
| - name: Verify Changed files | |
| uses: tj-actions/verify-changed-files@v20 | |
| id: verify_changed_files | |
| with: | |
| files: | | |
| README.md | |
| - name: README.md changed | |
| if: steps.verify_changed_files.outputs.files_changed == 'true' | |
| run: | | |
| echo "README.md has uncommited changes" | |
| exit 1 | |
| - name: Create Pull Request | |
| if: failure() | |
| uses: peter-evans/create-pull-request@v7 | |
| with: | |
| base: "main" | |
| title: "Updated README.md" | |
| branch: "chore/update-readme" | |
| commit-message: "Updated README.md" | |
| body: "Updated README.md" | |
| token: ${{ secrets.PAT_TOKEN }} | |
| - name: Copy doc assets | |
| run: | | |
| sed 's|./docs/images|./images|g' README.md > docs/README.md | |
| cp -f CHANGELOG.md docs/CHANGELOG.md | |
| - name: Set up Python | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: '3.13.x' | |
| - name: Upgrade pip | |
| run: | | |
| pip install -U pip | |
| - name: Install dependencies | |
| run: make install-docs | |
| - name: Deploy to github pages | |
| run: | | |
| make github-pages |