Skip to content

Commit

Permalink
correct some mistakes
Browse files Browse the repository at this point in the history
  • Loading branch information
waelantar committed Oct 22, 2024
1 parent b8ce251 commit 91d6075
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/pipeline-backend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,9 @@ jobs:
java-version: 17
distribution: 'corretto'
- name: Make Maven Wrapper executable
run: chmod +x ./mvnw
run: |
cd SocialBooksAppBackend
chmod +x ./mvnw
- name: Build project
run: |
cd SocialBooksAppBackend
Expand All @@ -87,7 +89,9 @@ jobs:
java-version: 17
distribution: 'corretto'
- name: Make Maven Wrapper executable
run: chmod +x ./mvnw
run: |
cd SocialBooksAppBackend
chmod +x ./mvnw
- name: Extract project version
id: extract_version
run: |
Expand Down

0 comments on commit 91d6075

Please sign in to comment.