Skip to content

Commit

Permalink
change mvnw to mvn
Browse files Browse the repository at this point in the history
  • Loading branch information
waelantar committed Oct 22, 2024
1 parent 0ee85fa commit 00555e8
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions .github/workflows/pipeline-backend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -29,7 +27,7 @@ jobs:
- name: Compile project
run: |
cd SocialBooksAppBackend
./mvnw clean compile
./mvn clean compile
unit-tests:
runs-on: ubuntu-20.04
Expand All @@ -47,7 +45,7 @@ jobs:
- name: Running unit Tests
run: |
cd SocialBooksAppBackend
./mvnw clean test
./mvn clean test
build:
runs-on: ubuntu-20.04
Expand All @@ -66,7 +64,7 @@ jobs:
- name: Build project
run: |
cd SocialBooksAppBackend
./mvnw clean package
./mvn clean package
build-image:
runs-on: ubuntu-20.04
Expand Down

0 comments on commit 00555e8

Please sign in to comment.