Skip to content

Docs tweaks

Docs tweaks #553

Workflow file for this run

# SPDX-FileCopyrightText: 2022 The meson-python developers
#
# SPDX-License-Identifier: MIT
name: docs
on:
push:
tags:
- '[0-9]+.[0-9]+.[0-9]+'
pull_request:
branches:
- main
- release-*
paths:
- docs/**
- CHANGELOG.rst
- README.md
workflow_dispatch:
inputs:
tag:
required: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/setup-python@v4
with:
python-version: '3.11'
- uses: actions/checkout@v3
with:
ref: ${{ github.event.push.tag || github.event.inputs.tag }}
- run: python -m pip install .[docs]
- run: python -m sphinx -W docs/ build/docs/
- uses: actions/upload-pages-artifact@v2
with:
path: build/docs/
deploy:
needs: build
permissions:
pages: write
id-token: write
environment:
name: github-pages
runs-on: ubuntu-latest
if: ${{ github.event.push.tag || github.event.inputs.tag }}
steps:
- uses: actions/deploy-pages@v2