Commit a1a8cbb 1 parent 37d0161 commit a1a8cbb Copy full SHA for a1a8cbb
File tree 1 file changed +7
-5
lines changed
1 file changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -25,17 +25,19 @@ jobs:
25
25
steps :
26
26
- name : Checkout
27
27
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
28
32
- name : Setup Pages
29
33
uses : actions/configure-pages@v3
30
34
- name : Build with Jekyll
31
35
uses : actions/jekyll-build-pages@v1
32
36
with :
33
37
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/
39
41
- name : Upload artifact
40
42
uses : actions/upload-pages-artifact@v2
41
43
You can’t perform that action at this time.
0 commit comments