Skip to content

Commit

Permalink
Updated publish script
Browse files Browse the repository at this point in the history
  • Loading branch information
FlorianMichael committed Jan 20, 2024
1 parent 6c374b1 commit 0dc3b8c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- name: Validate Gradle Wrapper
uses: gradle/wrapper-validation-action@v1
- name: Set up JDK 17
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: 17
Expand All @@ -32,7 +32,7 @@ jobs:
- name: Build with Gradle
run: ./gradlew build
- name: Upload Artifacts to GitHub
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: Artifacts
path: build/libs/
path: build/libs/
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
* This enum represents the version of a BetaCraft server. It is used to determine the protocol version of the server.
*/
public enum BCVersionCategory {

@SerializedName("release")
RELEASE,
@SerializedName("classic")
Expand All @@ -35,4 +36,5 @@ public enum BCVersionCategory {
ALPHA,
@SerializedName("beta")
BETA

}
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,5 @@
package de.florianmichael.classic4j.util.model;

public record Parameter(String name, String value) {

}

0 comments on commit 0dc3b8c

Please sign in to comment.