Commit 37d0161 1 parent 383156b commit 37d0161 Copy full SHA for 37d0161
File tree 3 files changed +8
-10
lines changed
java-src/io/github/erdos/stencil/functions
3 files changed +8
-10
lines changed Original file line number Diff line number Diff line change @@ -14,11 +14,9 @@ permissions:
14
14
pages : write
15
15
id-token : write
16
16
17
- # Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
18
- # However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
19
17
concurrency :
20
18
group : " pages"
21
- cancel-in-progress : false
19
+ cancel-in-progress : true
22
20
23
21
jobs :
24
22
# Build job
34
32
with :
35
33
source : ./docs
36
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
37
39
- name : Upload artifact
38
40
uses : actions/upload-pages-artifact@v2
39
41
Original file line number Diff line number Diff line change @@ -20,4 +20,5 @@ junit.xml
20
20
.DS_Store
21
21
.lsp /
22
22
* .jfr
23
- .clj-kondo /
23
+ .clj-kondo /
24
+ /_site /
Original file line number Diff line number Diff line change 1
1
/**
2
- * General purpose functions.
3
- * <p>
4
- * Function implementations come here.
5
- *
6
- *
7
- * <h3>Custom Functions</h3>
2
+ * <h2>Custom Functions</h2>
8
3
* <p>
9
4
* It is possible to define custom functions on the host code and invoke them from within the template files.
10
5
* Custom functions must implement the {@link io.github.erdos.stencil.functions.Function} interface and be registered
You can’t perform that action at this time.
0 commit comments