Fix folder structure to align with package name #5
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build and Publish | |
on: | |
push: | |
branches: [main] | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up JDK 8 | |
uses: actions/setup-java@v2 | |
with: | |
distribution: 'temurin' | |
java-version: '8' | |
- name: Set settings.xml | |
uses: s4u/[email protected] | |
with: | |
servers: | | |
[ | |
{ | |
"id": "mks-nexus-public-releases", | |
"username": "${{ secrets.NEXUS_USERNAME }}", | |
"password": "${{ secrets.NEXUS_PASSWORD }}" | |
}, | |
{ | |
"id": "mks-nexus-public-snapshots", | |
"username": "${{ secrets.NEXUS_USERNAME }}", | |
"password": "${{ secrets.NEXUS_PASSWORD }}" | |
}] | |
if: ${{ github.ref == 'refs/heads/main' }} | |
- name: Build and publish | |
run: mvn --batch-mode clean deploy | |
if: ${{ github.ref == 'refs/heads/main' }} |