fix github actions

This commit is contained in:
babymsp2k
2025-07-05 01:12:09 +02:00
parent d86a74f9bc
commit af028f0a68
3 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -36,7 +36,7 @@ jobs:
java-version: ${{ matrix.java }}
- name: Build with Gradle
run: ./gradlew build -x checkstyleMain -x checkstyleTest --info
run: ./gradlew clean shadowJar -x test -x checkstyleMain -x checkstyleTest -x spotbugsMain --info
- name: Upload build results
uses: actions/upload-artifact@v4
@@ -67,7 +67,7 @@ jobs:
java-version: 21
- name: Publish with Gradle
run: ./gradlew -Pver="0.0.0-RC-1" release -x checkstyleMain -x checkstyleTest
run: ./gradlew -Pver="0.0.0-RC-1" clean shadowJar -x test -x checkstyleMain -x checkstyleTest -x spotbugsMain
- name: Upload build results
uses: actions/upload-artifact@v4
+1 -1
View File
@@ -35,7 +35,7 @@ jobs:
java-version: ${{ matrix.java }}
- name: Build with Gradle
run: ./gradlew build --info
run: ./gradlew clean shadowJar -x test -x checkstyleMain -x checkstyleTest -x spotbugsMain --info
- name: Upload build results
uses: actions/upload-artifact@v4
+1 -1
View File
@@ -25,7 +25,7 @@ jobs:
uses: ./.github/actions/common-setup
- name: Publish with Gradle
run: ./gradlew -Pver=${{ github.ref_name }} release
run: ./gradlew -Pver=${{ github.ref_name }} clean shadowJar -x test -x checkstyleMain -x checkstyleTest -x spotbugsMain
- name: Upload build results
uses: actions/upload-artifact@v4