Skip to content

Commit 5141417

Browse files
Merge pull request #479 from satyamyadav979/patch-1
Add master workflow to orchestrate AsciiDoc and Javadoc publishing
2 parents d249665 + 77178ed commit 5141417

1 file changed

Lines changed: 15 additions & 0 deletions

File tree

.github/workflows/publish-docs.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: Publish Documentation
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
- develop
8+
9+
jobs:
10+
publish-asciidoc:
11+
uses: ./.github/workflows/asciidoc-build.yml
12+
13+
publish-javadoc:
14+
needs: publish-asciidoc
15+
uses: ./.github/workflows/javadoc-gh-pages.yml

0 commit comments

Comments
 (0)