Skip to content

Commit

Permalink
Create genJar.yml
Browse files Browse the repository at this point in the history
workflows
  • Loading branch information
lushunming authored Aug 9, 2024
1 parent 24d256a commit ed1a4cf
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/genJar.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Spider Jar Gen CI

on: workflow_dispatch

jobs:
build:

runs-on: windows-latest

steps:
- uses: actions/checkout@v2
- name: set up JDK 11
uses: actions/setup-java@v2
with:
java-version: '11'
distribution: 'adopt'
cache: gradle

- name: Build with Gradle
run: ./buildAndGenJar.bat ec

- 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']"

0 comments on commit ed1a4cf

Please sign in to comment.