From f988db4bc06a4ccae40e910b1078b265349e343b Mon Sep 17 00:00:00 2001 From: Your Name Date: Thu, 27 Mar 2025 12:53:59 +0100 Subject: [PATCH] fix: update Gradle commands in workflow to use specific path for consistency --- .gitea/workflows/action.yaml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.gitea/workflows/action.yaml b/.gitea/workflows/action.yaml index 8cbec51..16724a4 100644 --- a/.gitea/workflows/action.yaml +++ b/.gitea/workflows/action.yaml @@ -12,9 +12,6 @@ jobs: - name: Checkout Repository uses: actions/checkout@v4 - - name: test - run: /opt/gradle-8.13/bin/gradle --version - - name: List files in the repository run: ls ${{ gitea.workspace }} @@ -22,7 +19,7 @@ jobs: run: ls "${{ gitea.workspace }}/environmentex" - name: Verify Gradle Installation - run: cd "${{ gitea.workspace }}/environmentex" && gradle wrapper && ./gradlew build --stacktrace --no-daemon + run: cd "${{ gitea.workspace }}/environmentex" && /opt/gradle-8.13/bin/gradle wrapper && /opt/gradle-8.13/bin/gradle build --stacktrace --no-daemon - name: show if jar is built run: ls ${{ gitea.workspace }}