Skip to content

Commit

Permalink
fix pipeline issue
Browse files Browse the repository at this point in the history
  • Loading branch information
yannicklamprecht committed Sep 25, 2024
1 parent 61d621c commit 0b37d1f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/build-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,6 @@ jobs:
distribution: temurin
java-version: 21
- name: Clean Build
run: ./gradlew clean build
run: |
cd app
./gradlew clean build
4 changes: 3 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,6 @@ jobs:
architecture: x64
distribution: "temurin"
- name: Build with gradle
run: ./gradlew build
run: |
cd app
./gradlew clean build

0 comments on commit 0b37d1f

Please sign in to comment.