From 00555e84e8e171914529beae43d9c5a2de77b3a8 Mon Sep 17 00:00:00 2001 From: Wael Antar Date: Tue, 22 Oct 2024 16:48:48 +0100 Subject: [PATCH] change mvnw to mvn --- .github/workflows/pipeline-backend.yml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/pipeline-backend.yml b/.github/workflows/pipeline-backend.yml index e51d6c7..8b1e828 100644 --- a/.github/workflows/pipeline-backend.yml +++ b/.github/workflows/pipeline-backend.yml @@ -18,8 +18,6 @@ jobs: uses: actions/checkout@v4 with: fetch-depth: 0 - - name: Make Maven Wrapper executable - run: chmod +x ./mvnw - name: Setup JDK uses: actions/setup-java@v1 @@ -29,7 +27,7 @@ jobs: - name: Compile project run: | cd SocialBooksAppBackend - ./mvnw clean compile + ./mvn clean compile unit-tests: runs-on: ubuntu-20.04 @@ -47,7 +45,7 @@ jobs: - name: Running unit Tests run: | cd SocialBooksAppBackend - ./mvnw clean test + ./mvn clean test build: runs-on: ubuntu-20.04 @@ -66,7 +64,7 @@ jobs: - name: Build project run: | cd SocialBooksAppBackend - ./mvnw clean package + ./mvn clean package build-image: runs-on: ubuntu-20.04