Add master workflow to orchestrate AsciiDoc and Javadoc publishing#479
Open
satyamyadav979 wants to merge 1 commit intooss-slu:developfrom
Open
Add master workflow to orchestrate AsciiDoc and Javadoc publishing#479satyamyadav979 wants to merge 1 commit intooss-slu:developfrom
satyamyadav979 wants to merge 1 commit intooss-slu:developfrom
Conversation
Closes oss-slu#462 Created publish-docs.yml to sequentially run AsciiDoc and Javadoc reusable workflows on push to main and develop branches. Signed-off-by: satyamyadav979 <145156185+satyamyadav979@users.noreply.github.com>
|
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Closes #462
Summary
Converted the existing AsciiDoc and Javadoc publishing workflows into reusable workflows using
workflow_call.Added a new master workflow (
publish-docs.yml) that triggers on push to themainanddevelopbranches and sequentially invokes both documentation workflows usingneedsto control execution order.This ensures controlled GitHub Pages publishing and prevents potential branch conflicts when both workflows affect the same publishing branch.
Changes Made
asciidoc-build.ymlto useworkflow_calljavadoc-gh-pages.ymlto useworkflow_callpublish-docs.ymlto orchestrate documentation publishingTesting
Changes were validated through GitHub Actions workflow syntax and branch comparison. The workflows are now reusable and properly sequenced.