-
Notifications
You must be signed in to change notification settings - Fork 1
39 lines (33 loc) · 871 Bytes
/
maven-deploy.yml
File metadata and controls
39 lines (33 loc) · 871 Bytes
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
name: Maven Build and Deploy
on:
push:
branches:
- main
tags:
- 'ALPHA-*'
- 'BETA-*'
- 'v*'
jobs:
build_and_deploy:
runs-on: [self-hosted]
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up JDK 17
uses: actions/setup-java@v2
with:
java-version: 17
distribution: 'adopt'
- name: Cache Maven packages
uses: actions/cache@v2
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2
- name: Deploy with Maven
if: startsWith(github.ref, 'refs/tags/')
env:
SETTINGS_XML: ${{ secrets.MAVEN_SETTINGS_XML }}
run: |
echo "$SETTINGS_XML" > settings.xml
mvn --settings settings.xml deploy