Initial commit
This commit is contained in:
commit
8716669d29
45 changed files with 2605 additions and 0 deletions
2
.github/boring-cyborg.yml
vendored
Normal file
2
.github/boring-cyborg.yml
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
# Boring Cyborg: https://probot.github.io/apps/boring-cyborg/
|
||||
_extends: ".github"
|
2
.github/config.yml
vendored
Normal file
2
.github/config.yml
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
# to-do: https://probot.github.io/apps/todo/
|
||||
_extends: ".github"
|
15
.github/dependabot.yml
vendored
Normal file
15
.github/dependabot.yml
vendored
Normal file
|
@ -0,0 +1,15 @@
|
|||
version: 2
|
||||
enable-beta-ecosystems: true
|
||||
|
||||
updates:
|
||||
- package-ecosystem: "gradle"
|
||||
directory: "/"
|
||||
|
||||
schedule:
|
||||
interval: "weekly"
|
||||
|
||||
- package-ecosystem: "github-actions"
|
||||
directory: "/"
|
||||
|
||||
schedule:
|
||||
interval: "weekly"
|
2
.github/settings.yml
vendored
Normal file
2
.github/settings.yml
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
# Settings: https://probot.github.io/apps/settings/
|
||||
_extends: ".github"
|
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
|
40
.github/workflows/develop.yml
vendored
Normal file
40
.github/workflows/develop.yml
vendored
Normal file
|
@ -0,0 +1,40 @@
|
|||
name: Build & Publish
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- develop
|
||||
|
||||
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
|
43
.github/workflows/root.yml
vendored
Normal file
43
.github/workflows/root.yml
vendored
Normal file
|
@ -0,0 +1,43 @@
|
|||
name: Build & Publish
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- root
|
||||
|
||||
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
|
||||
|
||||
with:
|
||||
dependency-graph: generate-and-submit
|
||||
|
||||
- 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