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