Skip to content

Next development 2.9.0-SNAPSHOT #29

Next development 2.9.0-SNAPSHOT

Next development 2.9.0-SNAPSHOT #29

Workflow file for this run

name: Build and Publish
on:
push:
branches: [main]
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",
"username": "${{ secrets.NEXUS_USERNAME }}",
"password": "${{ secrets.NEXUS_PASSWORD }}"
},
{
"id": "mks-nexus-snapshots",
"username": "${{ secrets.NEXUS_USERNAME }}",
"password": "${{ secrets.NEXUS_PASSWORD }}"
}]
if: ${{ github.ref == 'refs/heads/main' || (startsWith(github.ref, 'refs/tags/')) }}
- name: Build and publish
run: mvn --batch-mode clean deploy
if: ${{ github.ref == 'refs/heads/main' || (startsWith(github.ref, 'refs/tags/')) }}