-
Notifications
You must be signed in to change notification settings - Fork 0
65 lines (54 loc) · 1.48 KB
/
ci.yaml
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
name: Java CI
on:
push:
branches:
- main
tags:
- "v*.*.*"
pull_request:
branches:
- main
release:
types:
- published
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up JDK 11
uses: actions/setup-java@v4
with:
java-version: '11'
distribution: 'adopt'
- name: Cache Maven packages
uses: actions/[email protected]
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2
- name: Build with Maven
run: mvn --batch-mode --update-snapshots verify
- name: Prepare staging dir
run: mkdir staging && cp target/*.jar staging
- name: Upload Artifact
uses: actions/upload-artifact@v4
with:
name: Package
path: staging
- name: Publish SNAPSHOT to Github Packages
if: github.ref == 'refs/heads/main'
env:
GITHUB_TOKEN: ${{ github.token }}
run: mvn deploy
- name: Publish Release to GitHub Packages
if: github.event_name == 'release' && github.event.action == 'published'
env:
GITHUB_TOKEN: ${{ github.token }}
run: mvn deploy
- name: Release
uses: softprops/action-gh-release@v2
if: startsWith(github.ref, 'refs/tags/')
with:
files: target/keycloak-theme-rabe.jar