Skip to content

Commit

Permalink
修补cicd脚本
Browse files Browse the repository at this point in the history
  • Loading branch information
ColdeZhang committed Oct 7, 2024
1 parent d287b61 commit 6e57cad
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 7 deletions.
4 changes: 1 addition & 3 deletions .gitea/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,7 @@ jobs:
distribution: 'zulu'
cache: gradle
- name: "Build with Gradle"
run: |
chmod +x ./BuildScript.sh
./BuildScript.sh all
run: ./BuildScript.sh all
- name: "Build & test"
run: |
echo "done!"
Expand Down
4 changes: 1 addition & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,7 @@ jobs:
distribution: 'zulu'
cache: gradle
- name: "Build with Gradle"
run: |
chmod +x ./BuildScript.sh
./BuildScript.sh all
run: ./BuildScript.sh all
- name: "Build & test"
run: |
TAG=$(echo $GITHUB_REF | sed 's/refs\/tags\///')
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ var libraries = listOf<String>()
libraries = libraries + "cn.lunadeer:MinecraftPluginUtils:1.3.10"

group = "cn.lunadeer"
version = "2.13.0-beta"
version = "2.13.1-beta"

java {
toolchain.languageVersion.set(JavaLanguageVersion.of(21))
Expand Down

0 comments on commit 6e57cad

Please sign in to comment.