aboutsummaryrefslogtreecommitdiffstats
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2022-06-15 10:24:07 -0700
committerGerald Combs <gerald@wireshark.org>2022-06-15 10:26:36 -0700
commit022ebb106a2890397d3ac9ff9b3db5cc369da99c (patch)
treef7067c7a358df9c5b3249fce0820c5d0ec7b8600 /.gitlab-ci.yml
parenta1f36f06f6ac2fa4f0ae06843c84d9711b71ef2c (diff)
GitLab CI: Fix our documentation globs
The correct glob pattern for a directory and its subdirectories is "**/*". Use that in the change rules for the Documentation job.
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml8
1 files changed, 4 insertions, 4 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 2f00e53f09..1bd87a0bc5 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -430,13 +430,13 @@ Documentation:
rules:
- if: '$CI_PIPELINE_SOURCE == "push" && $CI_PROJECT_URL =~ /.*gitlab.com\/wireshark\/wireshark/'
changes:
- - "docbook/**"
- - "epan/wslua/**"
+ - "docbook/**/*"
+ - "epan/wslua/**/*"
when: always
- if: '$CI_PIPELINE_SOURCE == "push"'
changes:
- - "docbook/**"
- - "epan/wslua/**"
+ - "docbook/**/*"
+ - "epan/wslua/**/*"
when: manual
script:
# XXX We might want to move this to wireshark-ubuntu-dev or debian-setup.sh.