Skip to content

Commit

Permalink
Fix ci build post setup maven cache removal
Browse files Browse the repository at this point in the history
  • Loading branch information
groldan committed Aug 14, 2023
1 parent daa0304 commit 72ab4d8
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-and-push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55,5 +55,5 @@ jobs:
- name: Remove project jars from cached repository
run: |
rm -rf .m2/repository/org/geoserver
find .m2/repository -name "*SNAPSHOT*" -type d | xargs rm -rf {}
rm -rf ~/.m2/repository/org/geoserver
find ~/.m2/repository -name "*SNAPSHOT*" -type d | xargs rm -rf {}
4 changes: 2 additions & 2 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,5 +47,5 @@ jobs:
- name: Remove project jars from cached repository
run: |
rm -rf .m2/repository/org/geoserver
find .m2/repository -name "*SNAPSHOT*" -type d | xargs rm -rf {}
rm -rf ~/.m2/repository/org/geoserver
find ~/.m2/repository -name "*SNAPSHOT*" -type d | xargs rm -rf {}
4 changes: 2 additions & 2 deletions .github/workflows/pull-request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,6 @@ jobs:
- name: Remove project jars from cached repository
run: |
rm -rf .m2/repository/org/geoserver
find .m2/repository -name "*SNAPSHOT*" -type d | xargs rm -rf {}
rm -rf ~/.m2/repository/org/geoserver
find ~/.m2/repository -name "*SNAPSHOT*" -type d | xargs rm -rf {}

0 comments on commit 72ab4d8

Please sign in to comment.