-
Notifications
You must be signed in to change notification settings - Fork 1
70 lines (58 loc) · 1.92 KB
/
maven.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
name: 'build test deploy'
on:
push:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-20.04
name: JDK ${{ matrix.java }}
strategy:
matrix:
java: [ 11, 17, 21 ]
steps:
- name: Checkout...
uses: actions/checkout@v4
- name: Set up JDK...
uses: actions/setup-java@v4
with:
java-version: ${{ matrix.java }}
distribution: 'temurin'
- name: Retrieve mvn repo cache...
uses: actions/cache@v4
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}-build-v1
restore-keys: ${{ runner.os }}-maven
- name: Build and test...
run: mvn clean verify -U
deploy:
needs: build
runs-on: ubuntu-20.04
steps:
- name: Checkout...
uses: actions/checkout@v4
# this action exports env.POM_VERSION variable
- name: Export Maven coordinates...
uses: bootique-tools/export-maven-coordinates-action@v1
- name: Set up JDK...
uses: actions/setup-java@v4
# skip this for the release versions
if: contains(env.POM_VERSION, '-SNAPSHOT')
with:
java-version: 11
distribution: 'temurin'
- name: Retrieve mvn repo cache...
uses: actions/cache@v4
# skip this for the release versions
if: contains(env.POM_VERSION, '-SNAPSHOT')
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}-build-v1
restore-keys: ${{ runner.os }}-maven
- name: Deploy...
run: mvn clean source:jar-no-fork javadoc:jar deploy -DskipTests --settings .github/workflows/maven_settings.xml
# skip this for the release versions
if: contains(env.POM_VERSION, '-SNAPSHOT')
env:
MAVEN_USERNAME: ${{ secrets.MAVEN_USERNAME }}
MAVEN_PASSWORD: ${{ secrets.MAVEN_PASSWORD }}