From 4bf40323a10652a1fcbe74b039f0f98b750731f9 Mon Sep 17 00:00:00 2001 From: Missing_Love <42416195+Q2297045667@users.noreply.github.com> Date: Sun, 21 Apr 2024 23:00:01 +0800 Subject: [PATCH] Delete .github/workflows/build.yml --- .github/workflows/build.yml | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml deleted file mode 100644 index 7a596c8520..0000000000 --- a/.github/workflows/build.yml +++ /dev/null @@ -1,30 +0,0 @@ -name: Patch and Build - -on: - push: - branches: [ "**" ] - pull_request: - -jobs: - build: - # Only run on PRs if the source branch is on someone else's repo - if: ${{ github.event_name != 'pull_request' || github.repository != github.event.pull_request.head.repo.full_name }} - runs-on: ubuntu-latest - steps: - - name: Checkout Git Repository - uses: actions/checkout@v3 - - name: Validate Gradle wrapper - uses: gradle/wrapper-validation-action@v1 - - name: Setup Gradle - uses: gradle/gradle-build-action@v2 - - name: Set up JDK - uses: actions/setup-java@v3 - with: - distribution: 'temurin' - java-version: '17' - - name: Configure Git User Details - run: git config --global user.email "actions@github.com" && git config --global user.name "Github Actions" - - name: Apply Patches - run: ./gradlew applyPatches - - name: Build - run: ./gradlew build