File tree Expand file tree Collapse file tree 1 file changed +43
-0
lines changed
Expand file tree Collapse file tree 1 file changed +43
-0
lines changed Original file line number Diff line number Diff line change 1+ name : Build Release Tag
2+
3+ on :
4+ push :
5+ tags :
6+ - ' v*'
7+
8+ jobs :
9+ build :
10+
11+ runs-on : ubuntu-latest
12+ permissions :
13+ contents : read
14+
15+ steps :
16+ - uses : actions/checkout@v4
17+
18+ - name : Set up JDK 17
19+ uses : actions/setup-java@v4
20+ with :
21+ java-version : ' 17'
22+ distribution : ' temurin'
23+
24+ - name : Setup Gradle
25+ uses : gradle/actions/setup-gradle@af1da67850ed9a4cedd57bfd976089dd991e2582 # v4.0.0
26+
27+ - name : Allow Execute Permission for Gradle
28+ run : chmod +x gradlew
29+
30+ - name : Build with Gradle Wrapper
31+ run : ./gradlew proguard
32+
33+ - name : Upload JAR artifact
34+ uses : actions/upload-artifact@v4
35+ with :
36+ name : Artifacts
37+ path : build/libs/*.jar
38+
39+ - name : Upload Mapping JAR artifact
40+ uses : actions/upload-artifact@v4
41+ with :
42+ name : Mappings
43+ path : build/mapping.txt
You can’t perform that action at this time.
0 commit comments