Skip to content

Commit

Permalink
Merge pull request #8090 from NlightNFotis/fix_doxygen_build_ci
Browse files Browse the repository at this point in the history
[CI] Perform apt update to sync repo sources before trying to install from them.
  • Loading branch information
NlightNFotis authored Nov 29, 2023
2 parents 9795ca6 + cca17b2 commit e911fa9
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@ jobs:
uses: actions/checkout@v3

- name: Install doxygen
run: sudo apt install doxygen graphviz pandoc npm
run: |
sudo apt update
sudo apt install doxygen graphviz pandoc npm
- name: Install python modules
run: sudo python3 -m pip install gitpython pandocfilters
Expand Down

0 comments on commit e911fa9

Please sign in to comment.