修复op无法绕过出生点保护问题
Some checks failed
Java CI-CD with Gradle / build (push) Has been cancelled

This commit is contained in:
zhangyuheng 2024-08-12 17:31:24 +08:00
parent a66014227c
commit 761d51c653
2 changed files with 5 additions and 2 deletions

View File

@ -20,7 +20,10 @@ jobs:
distribution: 'zulu'
cache: gradle
- name: "Build with Gradle"
run: ./gradlew buildPlugin
run: |
echo "proxy is ${{ vars.DEERCLOUD_PROXY }}"
export https_proxy=${{ vars.DEERCLOUD_PROXY }}
./gradlew buildPlugin
- name: "Copy jar to staging"
run: mkdir staging && cp build/libs/*.jar staging/
- name: "Build & test"

View File

@ -4,7 +4,7 @@ plugins {
}
group = "cn.lunadeer"
version = "2.1.13-beta"
version = "2.1.14-beta"
java {
toolchain.languageVersion.set(JavaLanguageVersion.of(21))