From 8ac4501b1d1eccf8bbb67c4fd9474ebbe8d30e9d Mon Sep 17 00:00:00 2001 From: lushunming <1357197829@qq.com> Date: Mon, 3 Nov 2025 14:18:42 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9E=84=E5=BB=BA=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/genJar.yml | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/.github/workflows/genJar.yml b/.github/workflows/genJar.yml index 6bb83854..d6a67b37 100644 --- a/.github/workflows/genJar.yml +++ b/.github/workflows/genJar.yml @@ -5,7 +5,7 @@ on: workflow_dispatch jobs: build: - runs-on: windows-latest + runs-on: ubuntu-20.04 steps: - uses: actions/checkout@v2 @@ -16,12 +16,10 @@ jobs: distribution: 'adopt' cache: gradle + - name: Grant execute permission to gradlew + run: chmod +x ./gradlew + - name: Build with Gradle - run: ./build.bat ec + run: ./gradlew assembleRelease - - name: Update spider jar - uses: EndBug/add-and-commit@v7 - with: - default_author: github_actions - message: 'update spider jar' - add: "['./jar/custom_spider.jar', './jar/custom_spider.jar.md5']" +