Skip to content

Commit e911fa9

Browse files
authored
Merge pull request #8090 from NlightNFotis/fix_doxygen_build_ci
[CI] Perform apt update to sync repo sources before trying to install from them.
2 parents 9795ca6 + cca17b2 commit e911fa9

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/publish.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,9 @@ jobs:
1212
uses: actions/checkout@v3
1313

1414
- name: Install doxygen
15-
run: sudo apt install doxygen graphviz pandoc npm
15+
run: |
16+
sudo apt update
17+
sudo apt install doxygen graphviz pandoc npm
1618
1719
- name: Install python modules
1820
run: sudo python3 -m pip install gitpython pandocfilters

0 commit comments

Comments
 (0)