Skip to content

ci(workflows): bump actions, setup trusted publish on pypi & add py3.15 on experimental #2

ci(workflows): bump actions, setup trusted publish on pypi & add py3.15 on experimental

ci(workflows): bump actions, setup trusted publish on pypi & add py3.15 on experimental #2

Workflow file for this run

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.14"
- 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:
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
id-token: write
# 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"