File tree Expand file tree Collapse file tree 3 files changed +37
-68
lines changed
Expand file tree Collapse file tree 3 files changed +37
-68
lines changed Original file line number Diff line number Diff line change 1+ name : Build InvUI
2+
3+ on :
4+ push :
5+ branches : [ "**" ]
6+ pull_request :
7+ branches : [ "**" ]
8+ schedule :
9+ - cron : ' 0 0 * * *'
10+
11+ jobs :
12+ build :
13+ name : Build InvUI
14+ runs-on : ubuntu-latest
15+
16+ steps :
17+ - name : Checkout repository
18+ uses : actions/checkout@v4
19+
20+ - name : Set up JDK 21
21+ uses : actions/setup-java@v4
22+ with :
23+ java-version : 21
24+ distribution : adopt
25+
26+ - name : Build InvUI
27+ uses : gradle/gradle-build-action@v3
28+ with :
29+ cache-disabled : true
30+ arguments : clean build test
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ name: Deploy Javadoc
22
33on :
44 release :
5- types : [ created ]
5+ types : [ released ]
66
77jobs :
88 deploy :
@@ -20,23 +20,14 @@ jobs:
2020 with :
2121 java-version : 21
2222 distribution : adopt
23- server-id : xenondevs-nms
24- server-username : MAVEN_USERNAME
25- server-password : MAVEN_PASSWORD
26-
27- - name : Build with Maven
28- run : mvn -B clean install -P xenondevs-nms
29- env :
30- MAVEN_USERNAME : ${{ secrets.MAVEN_USERNAME }}
31- MAVEN_PASSWORD : ${{ secrets.MAVEN_PASSWORD }}
32-
23+
3324 - name : Create Javadoc
34- run : mvn -B javadoc:javadoc -pl invui-core -P xenondevs-nms
35- env :
36- MAVEN_USERNAME : ${{ secrets.MAVEN_USERNAME }}
37- MAVEN_PASSWORD : ${{ secrets.MAVEN_PASSWORD }}
25+ uses : gradle/gradle-build-action@v3
26+ with :
27+ cache-disabled : true
28+ arguments : javadoc
3829
3930 - name : Deploy to Github Pages
40314132 with :
42- folder : invui-core/target/site/apidocs /
33+ folder : invui/build/docs/javadoc /
You can’t perform that action at this time.
0 commit comments