Maven deploy cicd fix #34
Workflow file for this run
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: Deploy to Mekom | |
on: | |
# Manually triggered workflow using the "Run workflow" button | |
workflow_dispatch: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
#set up the build enviroment | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
- name: Set up JDK 8 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '8' | |
distribution: 'temurin' | |
cache: maven | |
# Build with Maven | |
- name: Build with Maven | |
run: mvn -B package -DskipTests | |
- name: Set settings.xml | |
uses: s4u/[email protected] | |
with: | |
servers: | | |
[{ | |
"id": "mks-repo", | |
"username": "${{ secrets.NEXUS_USERNAME }}", | |
"password": "${{ secrets.NEXUS_PASSWORD }}" | |
}, | |
{ | |
"id": "mks-repo-snapshots", | |
"username": "${{ secrets.NEXUS_USERNAME }}", | |
"password": "${{ secrets.NEXUS_PASSWORD }}" | |
}] | |
- name: Publish | |
run: mvn --batch-mode clean deploy -DskipTests |