Skip to content

Commit

Permalink
Fix the paths considered for the documentation build
Browse files Browse the repository at this point in the history
The annotation processor was only added in for the push in quarkusio#42076 and we
need to run it also for the PR.
In passing, fixed some other stuff.
  • Loading branch information
gsmet committed Aug 13, 2024
1 parent c5b9fd5 commit 284e85a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci-actions-incremental.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ on:
- '*.txt'
- 'adr/**'
- 'jakarta/**'
- 'docs/src/main/asciidoc/**'
- 'docs/**'
- '.github/ISSUE_TEMPLATE/**'
- '.github/*.yml'
- '.github/*.java'
Expand All @@ -31,7 +31,7 @@ on:
- '*.txt'
- 'adr/**'
- 'jakarta/**'
- 'docs/src/main/asciidoc/**'
- 'docs/**'
- '.github/ISSUE_TEMPLATE/**'
- '.github/*.yml'
- '.github/*.java'
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/doc-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,15 @@ on:
- '3.0'
paths:
- 'core/processor/**'
- 'docs/src/main/asciidoc/**'
- 'devtools/config-doc-maven-plugin/**'
- 'docs/**'
- '.github/workflows/doc-build.yml'
pull_request:
types: [opened, synchronize, reopened]
paths:
- 'docs/src/main/asciidoc/**'
- 'core/processor/**'
- 'devtools/config-doc-maven-plugin/**'
- 'docs/**'
- '.github/workflows/doc-build.yml'

concurrency:
Expand Down

0 comments on commit 284e85a

Please sign in to comment.