File tree Expand file tree Collapse file tree 2 files changed +41
-1
lines changed
Expand file tree Collapse file tree 2 files changed +41
-1
lines changed Original file line number Diff line number Diff line change 22 <modelVersion >4.0.0</modelVersion >
33 <groupId >net.azisaba</groupId >
44 <artifactId >LunaChatPlus</artifactId >
5- <version >3.0.19 </version >
5+ <version >3.0.20 </version >
66 <description >A powerfull chat channel plugin with IME (Kana-Kanji conversion) support</description >
77 <url >https://github.com/ucchyocean/LunaChat</url >
88
Original file line number Diff line number Diff line change 1+ name : CI
2+ on :
3+ push :
4+ tags :
5+ - ' *'
6+ workflow_dispatch :
7+ jobs :
8+ build :
9+ runs-on : ubuntu-latest
10+ name : Build
11+ steps :
12+ - uses : actions/checkout@v2
13+ - name : Setup JDK
14+ uses : actions/setup-java@v2
15+ with :
16+ java-version : 8
17+ distribution : temurin
18+ cache : maven
19+ - name : Build
20+ run : mvn clean install
21+ - name : Retrieve API version
22+ run : ' echo "::set-output name=version::$(mvn -f pom.xml help:evaluate -Dexpression=project.version -q -DforceStdout)"'
23+ id : retrieveApiVersion
24+ - name : Release new build
25+ 26+ with :
27+ tag_name : ${{ steps.retrieveApiVersion.outputs.version }}
28+ files : ' target/LunaChatPlus.jar'
29+ env :
30+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
31+ - name : Cache
32+ 33+ with :
34+ path : ' ~/.m2'
35+ key : maven
36+ - name : Upload a Build Artifact
37+ 38+ with :
39+ name : LunaChatPlus
40+ path : ' target/LunaChatPlus.jar'
You can’t perform that action at this time.
0 commit comments