ok i give up, i add the temp fix again
This commit is contained in:
parent
9bd8b6715c
commit
3c8f873a45
43
.github/workflows/ci.yml
vendored
43
.github/workflows/ci.yml
vendored
@ -1,43 +0,0 @@
|
||||
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
40
.github/workflows/develop.yml
vendored
@ -1,40 +0,0 @@
|
||||
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
|
4
.github/workflows/root.yml
vendored
4
.github/workflows/root.yml
vendored
@ -8,6 +8,10 @@ jobs:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
|
||||
- name: Disable SSL verify (Temporary Fix)
|
||||
run: git config --global http.sslVerify false
|
||||
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- name: Set up Java
|
||||
|
Loading…
x
Reference in New Issue
Block a user