-
Notifications
You must be signed in to change notification settings - Fork 0
47 lines (42 loc) · 1.31 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
---
name: build
on:
push:
branches: [main, "REL-*"]
workflow_dispatch:
inputs:
skipTests:
description: 'Skip tests'
required: true
default: 'false'
env:
skipTests: false
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/[email protected]
with:
distribution: 'temurin'
java-version: 17
cache: maven
server-id: vpro-ossrh
server-username: SONATYPE_USERNAME
server-password: SONATYPE_PASSWORD
gpg-private-key: ${{ secrets.GPG_SECRET_KEY }}
gpg-passphrase: GPG_SECRET_KEY_PASSPHRASE
- name: Build with Maven
run: mvn -ntp -fae -DskipITs=false -DskipTests=${skipTests} -U -B -Pdeploy,sonatype deploy -Dgpg.skip=false
env:
SONATYPE_USERNAME: ${{ secrets.SONATYPE_USERNAME }}
SONATYPE_PASSWORD: ${{ secrets.SONATYPE_PASSWORD }}
GPG_SECRET_KEY_PASSPHRASE: ${{ secrets.GPG_SECRET_KEY_PASSPHRASE }}
- name: Publish to codecov
uses: codecov/codecov-action@v3
continue-on-error: true
- name: Publish Test Report
uses: EnricoMi/publish-unit-test-result-action/[email protected]
with:
junit_files: "**/target/surefire-reports/*.xml"
if: always()