From 3a2b18907ea3a3bc49a8d55adec130efbe981d98 Mon Sep 17 00:00:00 2001 From: hyperdefined Date: Sat, 4 Apr 2026 23:45:31 -0400 Subject: [PATCH] change workflow --- .github/workflows/{maven.yml => build.yml} | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) rename .github/workflows/{maven.yml => build.yml} (83%) diff --git a/.github/workflows/maven.yml b/.github/workflows/build.yml similarity index 83% rename from .github/workflows/maven.yml rename to .github/workflows/build.yml index abcf065..7eaa779 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/build.yml @@ -1,7 +1,7 @@ # This workflow will build a Java project with Maven # For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven -name: Build with Maven +name: Build with Gradle on: push: @@ -21,5 +21,5 @@ jobs: with: distribution: temurin java-version: 25 - - name: Build with Maven - run: mvn -B package --file pom.xml + - name: Build with Gradle + run: ./gradlew build