File tree Expand file tree Collapse file tree 1 file changed +4
-16
lines changed Expand file tree Collapse file tree 1 file changed +4
-16
lines changed Original file line number Diff line number Diff line change @@ -5,40 +5,28 @@ on: workflow_dispatch
5
5
permissions : {}
6
6
7
7
jobs :
8
- deploy :
8
+ build :
9
9
runs-on : ubuntu-24.04
10
10
steps :
11
11
- name : " Checkout"
12
- uses : actions/checkout@v3
12
+ uses : actions/checkout@v4
13
13
with :
14
14
persist-credentials : false
15
15
16
16
- name : " Set up JDK 17"
17
- uses : actions/setup-java@v2
17
+ uses : actions/setup-java@v4
18
18
with :
19
19
distribution : temurin
20
20
java-version : 17
21
21
22
- - name : " Build JVM API documentation"
23
- run : |
24
- cd ./bdk-jvm/
25
- bash ./scripts/build-linux-x86_64.sh
26
- ./gradlew dokkaHtml
27
-
28
- - name : " Upload JVM website"
29
- uses : actions/upload-artifact@v4
30
- with :
31
- name : artifact-jvm-api-docs
32
- path : /home/runner/work/bdk-ffi/bdk-ffi/bdk-jvm/lib/build/dokka/html/
33
-
34
22
- name : " Build Android API documentation"
35
23
run : |
36
24
cd ./bdk-android/
37
25
bash ./scripts/build-linux-x86_64.sh
38
26
./gradlew dokkaHtml
39
27
40
28
- name : " Upload Android website"
41
- uses : actions/upload-artifact@v3
29
+ uses : actions/upload-artifact@v4
42
30
with :
43
31
name : artifact-android-api-docs
44
32
path : /home/runner/work/bdk-ffi/bdk-ffi/bdk-android/lib/build/dokka/html/
You can’t perform that action at this time.
0 commit comments