Skip to content

Commit f0d9968

Browse files
committed
Fix a wrong package name in the update docs CI
1 parent 3b1adac commit f0d9968

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

.github/workflows/build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
- include/**
99
- examples/**
1010
- misc/ci_test_file.cpp
11-
- .github/workflows/**
11+
- .github/workflows/build.yml
1212

1313
jobs:
1414
linux-build:

.github/workflows/update_docs.yml

+5-4
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,11 @@ name: Update documentation
33
on:
44
push:
55
branches:
6-
- "master"
6+
- master
77
paths:
8-
- "docs/**"
9-
- "include/MyGL/**.hpp"
8+
- docs/**
9+
- include/MyGL/**.hpp
10+
- .github/workflows/update_docs.yml
1011

1112
jobs:
1213
documentation:
@@ -17,7 +18,7 @@ jobs:
1718

1819
- name: Install the dependencies
1920
run: |
20-
sudo apt install -y ninja doxygen
21+
sudo apt install -y ninja-build doxygen
2122
sudo pip3 install meson
2223
2324
- name: Configure meson

0 commit comments

Comments
 (0)