Skip to content

Bump ruff from 0.8.1 to 0.8.4 #990

Bump ruff from 0.8.1 to 0.8.4

Bump ruff from 0.8.1 to 0.8.4 #990

Workflow file for this run

name: docs
on: [push, pull_request, workflow_dispatch]
permissions:
contents: write
jobs:
docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Fetch tags
run: |
git fetch --prune --unshallow
git fetch --depth=1 origin +refs/tags/*:refs/tags/*
- uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install pyplumio build -r requirements.txt -r requirements_docs.txt
- name: Sphinx build
run: |
python -m build --sdist
sphinx-build ./docs/source ./docs/build
- name: Deploy
uses: peaceiris/actions-gh-pages@v4
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }}
with:
publish_branch: gh-pages
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs/build
force_orphan: true
cname: pyplumio.denpa.pro