File tree Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -25,17 +25,19 @@ jobs:
2525 steps :
2626 - name : Checkout
2727 uses : actions/checkout@v3
28+ - name : Compile uberjar
29+ run : lein uberjar
30+ - name : Run javadoc tool
31+ run : mkdir -p _site/javadoc && javadoc -d _site/javadoc --source-path ./java-src -cp target/stencil-core-*-standalone.jar -subpackages io.github.erdos.stencil
2832 - name : Setup Pages
2933 uses : actions/configure-pages@v3
3034 - name : Build with Jekyll
3135 uses : actions/jekyll-build-pages@v1
3236 with :
3337 source : ./docs
34- destination : ./_site
35- - name : Compile uberjar
36- run : lein uberjar
37- - name : Run javadoc tool
38- run : javadoc -d _site/javadoc --source-path ./java-src -cp target/stencil-core-*-standalone.jar -subpackages io.github.erdos.stencil
38+ destination : ./_site_jekyll
39+ - name : copy
40+ run : cp -R ./_site_jekyll/* ./_site/
3941 - name : Upload artifact
4042 uses : actions/upload-pages-artifact@v2
4143
You can’t perform that action at this time.
0 commit comments