Skip to content

Commit cca17b2

Browse files
committed
Perform apt update to sync repo sources before trying to install from them
1 parent 278fb51 commit cca17b2

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)