-
Notifications
You must be signed in to change notification settings - Fork 32
70 lines (60 loc) · 1.87 KB
/
tag.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: Keycloak FranceConnect Tag
on:
push:
tags:
- "*"
jobs:
build:
name: Build
runs-on: ubuntu-latest
outputs:
version: ${{ steps.get_version.outputs.VERSION }}
steps:
- uses: actions/checkout@v3
- name: Cache local Maven repository
uses: actions/cache@v3
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: 17
java-package: 'jdk'
- id: get_version
run: echo "VERSION=$(echo $GITHUB_REF | cut -d / -f 3)" >> $GITHUB_OUTPUT
- name: Set current version
run: ./mvnw -B versions:set -DnewVersion=${{ steps.get_version.outputs.VERSION }}
- name: Build with Maven
run: ./mvnw -B clean verify
- name: Upload jar
uses: actions/upload-artifact@v3
with:
name: jar
path: target/*.jar
release:
needs: build
name: Create Release
runs-on: ubuntu-latest
steps:
- name: Checkout artifact
uses: actions/download-artifact@v3
with:
name: jar
path: target
- name: Create Release
uses: softprops/action-gh-release@v1
with:
tag_name: ${{ needs.build.outputs.version }}
name: ${{ needs.build.outputs.version }}
body: |
${{github.event.head_commit.message}}
draft: false
prerelease: false
files: |
./target/keycloak-franceconnect-${{ needs.build.outputs.version }}-javadoc.jar
./target/keycloak-franceconnect-${{ needs.build.outputs.version }}-sources.jar
./target/keycloak-franceconnect-${{ needs.build.outputs.version }}.jar