chore(deps): update mkdocs-material requirement from >=9.7.5 to >=9.7.7 #60
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: deploy github pages | |
| on: [push, workflow_dispatch] | |
| env: | |
| SITE_URL: "https://promplate.github.io/py-docs/" | |
| permissions: | |
| contents: read | |
| pages: write | |
| id-token: write | |
| concurrency: | |
| group: "pages" | |
| cancel-in-progress: false | |
| jobs: | |
| deploy: | |
| runs-on: ubuntu-latest | |
| environment: | |
| name: github-pages | |
| url: ${{ steps.deployment.outputs.page_url }} | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - uses: pdm-project/setup-pdm@v4 | |
| with: | |
| python-version: 3.12 | |
| - name: Install dependencies | |
| run: pdm install | |
| - name: Generate pages | |
| run: pdm gen | |
| - uses: actions/configure-pages@v6 | |
| - uses: actions/upload-pages-artifact@v5 | |
| with: | |
| path: site | |
| - name: Deploy to GitHub Pages | |
| id: deployment | |
| uses: actions/deploy-pages@v5 |