From 3c8f873a452c2efe15a0bccf3c14a0c61a4f4539 Mon Sep 17 00:00:00 2001 From: Jannik Reimers Date: Thu, 3 Apr 2025 16:48:54 +0200 Subject: [PATCH] ok i give up, i add the temp fix again --- .github/workflows/ci.yml | 43 ----------------------------------- .github/workflows/develop.yml | 40 -------------------------------- .github/workflows/root.yml | 4 ++++ 3 files changed, 4 insertions(+), 83 deletions(-) delete mode 100644 .github/workflows/ci.yml delete mode 100644 .github/workflows/develop.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml deleted file mode 100644 index 38d1392..0000000 --- a/.github/workflows/ci.yml +++ /dev/null @@ -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 diff --git a/.github/workflows/develop.yml b/.github/workflows/develop.yml deleted file mode 100644 index 85f8586..0000000 --- a/.github/workflows/develop.yml +++ /dev/null @@ -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 diff --git a/.github/workflows/root.yml b/.github/workflows/root.yml index 51cf9a2..f5680bf 100644 --- a/.github/workflows/root.yml +++ b/.github/workflows/root.yml @@ -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