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
2+
3+ on :
4+ push :
5+ paths :
6+ - " *.gradle"
7+ - " gradle.properties"
8+ - " src/**"
9+ - " gradle/**"
10+ - " .github/workflows/*"
11+ pull_request :
12+ workflow_dispatch :
13+
14+ jobs :
15+ Build :
16+ runs-on : ubuntu-latest
17+ steps :
18+ - name : Checkout repository
19+ uses : actions/checkout@v4
20+ with :
21+ fetch-depth : 0
22+
23+ - name : Validate Gradle Wrapper
24+ uses : gradle/actions/wrapper-validation@v3
25+
26+ - name : Setup Java JDK
27+ uses : actions/setup-java@v4
28+ with :
29+ distribution : " zulu"
30+ java-version : 17
31+
32+ - name : Setup Gradle
33+ uses : gradle/actions/setup-gradle@v3
34+
35+ - name : Build with Gradle
36+ run : gradle build
37+
38+ - name : Upload Build Artifact
39+ uses : actions/upload-artifact@v4
40+ with :
41+ name : AdvancedVelocityManager-Plugin
42+ path : |
43+ build/libs/*.jar
You can’t perform that action at this time.
0 commit comments