feat: disable mandb trigger when installing packages in CI

The mandb trigger is incredibly slow and we don't need it
This commit is contained in:
Mike Almeloo
2025-10-09 21:09:49 +02:00
committed by GitHub
parent 2dd97f4c10
commit c378526f6c

View File

@@ -20,7 +20,14 @@ jobs:
- uses: "./.github/actions/setup-project"
- name: Install graphviz
run: sudo apt-get install -y graphviz
run: |
sudo tee /etc/dpkg/dpkg.cfg.d/01_nodoc > /dev/null << 'EOF'
path-exclude /usr/share/doc/*
path-exclude /usr/share/man/*
path-exclude /usr/share/info/*
EOF
sudo apt-get install -y graphviz
- name: Build documentation
run: |