File tree Expand file tree Collapse file tree 7 files changed +346
-87
lines changed
src/main/kotlin/org/jetbrains/kotlinx/spark/api Expand file tree Collapse file tree 7 files changed +346
-87
lines changed Original file line number Diff line number Diff line change
1
+ name : Generate and publish docs
2
+
3
+ on :
4
+ push :
5
+ branches :
6
+ - " spark-3.2"
7
+ pull_request :
8
+ branches :
9
+ - " spark-3.2"
10
+
11
+
12
+ jobs :
13
+ generate-and-publish-docs :
14
+ runs-on : ubuntu-latest
15
+
16
+ steps :
17
+ - uses : actions/checkout@v2
18
+ - name : Set up JDK 11
19
+ uses : actions/setup-java@v1
20
+ with :
21
+ distributions : adopt
22
+ java-version : 11
23
+ check-latest : true
24
+ - name : Generate docs
25
+ run : ./mvnw clean package site -Dmaven.test.skip=true
26
+ - name : Copy docs to "docs" branch
27
+ uses : peaceiris/actions-gh-pages@v3
28
+ with :
29
+ github_token : ${{ secrets.GITHUB_TOKEN }}
30
+ publish_branch : docs
31
+ publish_dir : ./kotlin-spark-api/3.2/target/dokka
32
+
33
+
Original file line number Diff line number Diff line change 27
27
<groupId >org.jetbrains.kotlinx.spark</groupId >
28
28
<artifactId >core-3.2_${scala.compat.version}</artifactId >
29
29
</dependency >
30
- <dependency >
31
- <groupId >org.jetbrains.kotlinx.spark</groupId >
32
- <artifactId >kotlin-spark-api-common</artifactId >
33
- </dependency >
30
+
34
31
35
32
<!-- Provided dependencies -->
36
33
<dependency >
You can’t perform that action at this time.
0 commit comments