Skip to content

Fix publish workflow Javadoc source path for Maven 3.12 output#271

Merged
BenCodez merged 2 commits into
masterfrom
copilot/fix-publish-job-failure
Jun 7, 2026
Merged

Fix publish workflow Javadoc source path for Maven 3.12 output#271
BenCodez merged 2 commits into
masterfrom
copilot/fix-publish-job-failure

Conversation

Copy link
Copy Markdown
Contributor

Copilot AI commented Jun 7, 2026

The publish GitHub Actions job was failing during Javadoc deployment because the workflow pointed to a non-existent docs directory. Maven Javadoc aggregate now emits docs under target/reports/apidocs, but the workflow still referenced target/apidocs.

  • Root cause

    • publish-javadoc.yml configured javadoc-source-folder as AdvancedCore/target/apidocs, which is not produced by the current Maven/Javadoc setup.
  • Workflow update

    • Updated the deploy source directory to the actual aggregate output path:
      • AdvancedCore/target/reports/apidocs
  • Relevant change

    # .github/workflows/publish-javadoc.yml
    - javadoc-source-folder: 'AdvancedCore/target/apidocs'
    + javadoc-source-folder: 'AdvancedCore/target/reports/apidocs'

Copilot AI changed the title [WIP] Fix failing GitHub Actions job 'publish' Fix publish workflow Javadoc source path for Maven 3.12 output Jun 7, 2026
Copilot AI requested a review from BenCodez June 7, 2026 20:56
@BenCodez BenCodez marked this pull request as ready for review June 7, 2026 20:57
@BenCodez BenCodez merged commit b94e045 into master Jun 7, 2026
4 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants