Initial commit
This commit is contained in:
commit
5307298dae
41 changed files with 2485 additions and 0 deletions
43
.github/workflows/ci.yml
vendored
Normal file
43
.github/workflows/ci.yml
vendored
Normal file
|
@ -0,0 +1,43 @@
|
|||
name: Build (CI)
|
||||
|
||||
on:
|
||||
push:
|
||||
branches-ignore:
|
||||
- root
|
||||
- develop
|
||||
|
||||
pull_request:
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- name: Set up Java
|
||||
uses: actions/setup-java@v4
|
||||
|
||||
with:
|
||||
java-version: 17
|
||||
distribution: temurin
|
||||
|
||||
- name: Gradle (Setup)
|
||||
uses: gradle/actions/setup-gradle@v4
|
||||
|
||||
- name: Gradle (Build)
|
||||
run: "./gradlew build"
|
||||
|
||||
- name: Upload artifacts (Main JAR)
|
||||
uses: actions/upload-artifact@v4
|
||||
|
||||
with:
|
||||
name: Main JAR
|
||||
path: build/libs/*-all.jar
|
||||
|
||||
- name: Upload artifacts (JARs)
|
||||
uses: actions/upload-artifact@v4
|
||||
|
||||
with:
|
||||
name: JARs
|
||||
path: build/libs/*.jar
|
Loading…
Add table
Add a link
Reference in a new issue