File tree 3 files changed +24
-2
lines changed
3 files changed +24
-2
lines changed Original file line number Diff line number Diff line change
1
+ name : Dev CI
2
+
3
+ on :
4
+ push :
5
+ branches :
6
+ - " dev"
7
+
8
+ jobs :
9
+ build :
10
+ runs-on : [ubuntu-latest]
11
+ steps :
12
+ - uses : actions/checkout@v1
13
+ - name : Set up JDK 1.8
14
+ uses : actions/setup-java@v1
15
+ with :
16
+ java-version : 1.8
17
+ - name : Make gradlew executable
18
+ run : chmod +x ./gradlew
19
+ - name : Build with Gradle
20
+ run : ./gradlew build -x copyJar
Original file line number Diff line number Diff line change 23
23
with :
24
24
repo_token : " ${{ secrets.GITHUB_TOKEN }}"
25
25
automatic_release_tag : " latest"
26
- prerelease : false
27
- title : " Release Build"
26
+ prerelease : true
27
+ title : " Latest Development Build"
28
28
files : |
29
29
NetworkClient/build/libs/*.jar
30
30
NetworkProxy/build/libs/*.jar
Original file line number Diff line number Diff line change
1
+ # MinecraftServerNetwork ![ ] ( https://github.com/SocketByte/MinecraftServerNetwork/workflows/Master%20CI/badge.svg ) ![ ] ( https://github.com/SocketByte/MinecraftServerNetwork/workflows/Dev%20CI/badge.svg )
2
+ This README is Work in Progress.
You can’t perform that action at this time.
0 commit comments