From 47f281ed5b3098e1490c062671ed55ca11f7606a Mon Sep 17 00:00:00 2001 From: jansel Date: Wed, 11 Dec 2024 21:39:31 +0000 Subject: [PATCH] [skip ci] delete unused workflow --- .github/workflows/ci.yml | 39 --------------------------------------- 1 file changed, 39 deletions(-) delete mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml deleted file mode 100644 index ec9eff1..0000000 --- a/.github/workflows/ci.yml +++ /dev/null @@ -1,39 +0,0 @@ -name: Build (CI) - -on: - push: - branches-ignore: - - root - - develop - - pull_request: - -jobs: - build: - 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 - uses: actions/setup-java@v4 - - with: - java-version: 17 - distribution: temurin - - - name: Grant execute permission for gradlew - run: chmod +x gradlew - - - name: Gradle (Build) - run: "./gradlew build" - - - name: Upload build artifacts - uses: actions/upload-artifact@v4 - - with: - name: Build and Deploy Artifacts - path: build/libs/*.jar