Skip to content

github: workflows: Update used actions to latest version #642

github: workflows: Update used actions to latest version

github: workflows: Update used actions to latest version #642

Workflow file for this run

name: documentation
on:
push:
branches: [ main ]
tags: [ 'v[0-9]+.[0-9]+.[0-9]+' ]
pull_request:
branches: [ main ]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v7
with:
fetch-depth: 0
- name: Receive tags
run: git fetch --tags origin
- name: Install build dependencies
run: |
sudo apt-get update
sudo apt-get install meson libglib2.0-dev libyaml-dev libparted-dev \
python3 python3-virtualenv
- name: Build documentation
run: |
virtualenv -p /usr/bin/python3 -v env
source env/bin/activate
pip install -r doc/requirements.txt
meson setup build -Ddoc=true
meson compile -C build doc