Skip to content

Commit

Permalink
trying to fix path of pom in maven.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Kodobocz authored May 13, 2024
1 parent 1947069 commit f7a4f17
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ jobs:
cache: maven
- name: Build with Maven
run: mvn -B package --file pom.xml
working-directory: ${{ github.workspace }}

# Optional: Uploads the full dependency graph to GitHub to improve the quality of Dependabot alerts this repository can receive
- name: Update dependency graph
Expand All @@ -46,6 +47,7 @@ jobs:
cache: maven
- name: Build with Maven
run: mvn -B package --file pom.xml
working-directory: ${{ github.workspace }}

build-mac:
runs-on: macos-latest
Expand All @@ -58,4 +60,5 @@ jobs:
distribution: 'corretto'
cache: maven
- name: Build with Maven
run: mvn -B package --file pom.xml
run: mvn -B package --file /pom.xml
working-directory: ${{ github.workspace }}

0 comments on commit f7a4f17

Please sign in to comment.