Skip to content

Commit c9f9ed0

Browse files
committed
README and dev workflow
1 parent 94f5ca9 commit c9f9ed0

File tree

3 files changed

+24
-2
lines changed

3 files changed

+24
-2
lines changed

.github/workflows/dev.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
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

.github/workflows/master.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ jobs:
2323
with:
2424
repo_token: "${{ secrets.GITHUB_TOKEN }}"
2525
automatic_release_tag: "latest"
26-
prerelease: false
27-
title: "Release Build"
26+
prerelease: true
27+
title: "Latest Development Build"
2828
files: |
2929
NetworkClient/build/libs/*.jar
3030
NetworkProxy/build/libs/*.jar

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
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.

0 commit comments

Comments
 (0)