Skip to content

Commit

Permalink
Update CI.yml (geosolutions-it#10033)
Browse files Browse the repository at this point in the history
  • Loading branch information
offtherailz committed Mar 6, 2024
1 parent 064d31c commit 85fdabf
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,13 @@ jobs:
server-username: MAVEN_USERNAME
server-password: MAVEN_PASSWORD
- name: Publish maven packages
run: mvn clean install deploy -f java/pom.xml
# Here it deploys only java modules and root, needed for MS project builds.
# Product, binary modules are to big to be hosted on the repository in snapshots, so they are skipped
run: |
# deploys java packages
mvn clean install deploy -f java/pom.xml
# deploys also the root module, needed for dependencies
mvn deploy --non-recursive
env:
MAVEN_USERNAME: ${{ secrets.GS_MAVEN_USERNAME }}
MAVEN_PASSWORD: ${{ secrets.GS_MAVEN_PASSWORD }}
Expand Down

0 comments on commit 85fdabf

Please sign in to comment.