-
Notifications
You must be signed in to change notification settings - Fork 5
60 lines (57 loc) · 1.54 KB
/
release.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
name: release
on:
push:
tags:
- '*'
jobs:
build:
name: build
runs-on: ubuntu-latest
strategy:
matrix:
java: [ '8' ]
steps:
- uses: actions/checkout@v4
- name: Set up JDK
uses: actions/setup-java@v2
with:
java-version: ${{ matrix.java }}
distribution: 'temurin'
cache: maven
- name: Build with Maven
run: mvn -B package --no-transfer-progress --file pom.xml
release:
runs-on: ubuntu-latest
needs: build
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Create GitHub Release
uses: ncipollo/release-action@6c75be85e571768fa31b40abf38de58ba0397db5 # [email protected]
with:
tag: ${{github.event.release.tag_name}}
- name: Set up JDK
uses: actions/setup-java@v2
with:
java-version: '8'
distribution: 'temurin'
cache: maven
-
name: Version
id: version
run: |
echo ::set-output name=VERSION::${GITHUB_REF#refs/tags/}
-
name: Install GPG key
id: install-gpg-key
run: |
# Install gpg secret key
cat <(echo -e "${{ secrets.GPG_KEY }}") | gpg --batch --import
-
name: Release Package
run: bash ./.github/workflows/release.sh -xe
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
VERSION: ${{ steps.version.outputs.VERSION }}
OSSRH_USER: "${{ secrets.OSSRH_USER }}"
OSSRH_PASSWORD: "${{ secrets.OSSRH_PASSWORD }}"