Skip to content

Commit 7e8e032

Browse files
authored
Merge pull request #191 from malmeloo/feat/disable-ci-man-db
feat: disable mandb trigger when installing packages in CI
2 parents 2dd97f4 + c378526 commit 7e8e032

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

.github/workflows/docs.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,14 @@ jobs:
2020
- uses: "./.github/actions/setup-project"
2121

2222
- name: Install graphviz
23-
run: sudo apt-get install -y graphviz
23+
run: |
24+
sudo tee /etc/dpkg/dpkg.cfg.d/01_nodoc > /dev/null << 'EOF'
25+
path-exclude /usr/share/doc/*
26+
path-exclude /usr/share/man/*
27+
path-exclude /usr/share/info/*
28+
EOF
29+
30+
sudo apt-get install -y graphviz
2431
2532
- name: Build documentation
2633
run: |

0 commit comments

Comments
 (0)