-
Notifications
You must be signed in to change notification settings - Fork 871
56 lines (50 loc) · 1.59 KB
/
maven_java_8.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
# This workflow will build a Java project with Maven
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
name: Java 8 CI with Maven
on:
push:
branches: [ develop, 3.1.x, 3.0.x ]
pull_request:
branches: [ develop, 3.1.x, 3.0.x ]
workflow_dispatch:
schedule:
- cron: 0 5 * * 1
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK 8 PR
if: github.event_name == 'pull_request'
uses: actions/setup-java@v3
with:
java-version: '8'
distribution: 'temurin'
# Step that does that actual cache save and restore
- name: Set up JDK 8 Branch
if: github.event_name != 'pull_request'
uses: actions/setup-java@v3
with:
java-version: '8'
distribution: 'temurin'
server-id: sonatype-nexus-snapshots
server-username: MAVEN_USERNAME
server-password: MAVEN_PASSWORD
# Step that does that actual cache save and restore
- name: Cache
uses: actions/cache@v3
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Build with Maven
run: mvn -B package --file pom.xml
- name: Publish Snapshot
if: github.event_name != 'pull_request'
run: mvn -B clean deploy -DskipTests --file pom.xml
env:
MAVEN_USERNAME: ${{ secrets.OSSRH_USERNAME }}
MAVEN_PASSWORD: ${{ secrets.OSSRH_TOKEN }}