File tree Expand file tree Collapse file tree 1 file changed +16
-16
lines changed
Expand file tree Collapse file tree 1 file changed +16
-16
lines changed Original file line number Diff line number Diff line change @@ -14,19 +14,19 @@ jobs:
1414 env :
1515 ENV : ' local' # Set to local, so it won't deploy the jar to the repos
1616 steps :
17- # Checkout code
18- - name : Checkout Code
19- uses : actions/checkout@v3
20- # Setup java and maven
21- - name : Set up JDK ${{ matrix.java-version }}
22- uses : actions/setup-java@v3
23- with :
24- distribution : adopt
25- java-version : ${{ matrix.java-version }}
26- cache : ' gradle'
27- # Setup executable gradle
28- - name : Make Gradle executable
29- run : chmod +x gradlew
30- # Test building without dokka
31- - name : Build Jar with Java ${{ matrix.java-version }}
32- run : ./gradlew clean publish shadow -x dokkaHtml
17+ # Checkout code
18+ - name : Checkout Code
19+ uses : actions/checkout@v3
20+ # Setup java and maven
21+ - name : Set up JDK ${{ matrix.java-version }}
22+ uses : actions/setup-java@v3
23+ with :
24+ distribution : adopt
25+ java-version : ${{ matrix.java-version }}
26+ cache : ' gradle'
27+ # Setup executable gradle
28+ - name : Make Gradle executable
29+ run : chmod +x gradlew
30+ # Test building without dokka
31+ - name : Build Jar with Java ${{ matrix.java-version }}
32+ run : ./gradlew clean shadowJar test -x dokkaHtml -no-daemon
You can’t perform that action at this time.
0 commit comments