File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree 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+
9+ jobs :
10+ build :
11+ name : Build InvUI
12+ runs-on : ubuntu-latest
13+
14+ steps :
15+ - name : Checkout repository
16+ uses : actions/checkout@v4
17+
18+ - name : Set up JDK 21
19+ uses : actions/setup-java@v4
20+ with :
21+ java-version : 21
22+ distribution : adopt
23+
24+ - name : Build InvUI
25+ uses : gradle/gradle-build-action@v3
26+ with :
27+ cache-disabled : true
28+ 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
4031 uses : JamesIves/github-pages-deploy-action@v4.6.0
4132 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