-
Notifications
You must be signed in to change notification settings - Fork 26
38 lines (32 loc) · 1.01 KB
/
main.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
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/')) }}