fix(python): support python3.13 and drop python3.8 #52
Workflow file for this run
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: Pages | |
on: | |
push: | |
branches: ["master"] | |
pull_request: | |
branches: ["master"] | |
release: | |
types: [created] | |
branches: | |
- master | |
workflow_dispatch: | |
jobs: | |
build: | |
name: Build docs | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 # otherwise, you will failed to push refs to dest repo | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: '3.13' | |
- name: Install dependencies | |
run: pip install -r requirements.txt | |
- name: Build docs | |
run: scripts/build-docs.sh | |
- name: Upload artifacts | |
uses: actions/upload-pages-artifact@v3 | |
with: | |
# Upload built docs | |
path: "./site" | |
deploy: | |
name: Deploy docs | |
if: github.event_name == 'release' && github.event.action == 'created' | |
needs: build | |
runs-on: ubuntu-latest | |
# Grant GITHUB_TOKEN the permissions required to make a Pages deployment | |
permissions: | |
pages: write # to deploy to Pages | |
id-token: write # to verify the deployment originates from an appropriate source | |
# Deploy to the github-pages environment | |
environment: | |
name: github-pages | |
url: ${{ steps.deployment.outputs.page_url }} | |
steps: | |
- uses: actions/deploy-pages@v4 | |
id: deployment | |
name: "Deploy to GitHub Pages" |