-
Notifications
You must be signed in to change notification settings - Fork 5
59 lines (50 loc) · 1.95 KB
/
publish.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
# Workflow that builds packages using Gradle and then publishes them to Maven Central OSSRH
# currently, it can only be triggered manually
name: Publish to Maven Central
on: workflow_dispatch
jobs:
build-and-publish:
strategy:
matrix:
java: ["17"]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
name: ${{ matrix.os }} - JDK ${{ matrix.java }}
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Cache Gradle caches
uses: actions/cache@v2
with:
path: ~/.gradle/caches
key: ${{ matrix.java }}-${{ matrix.os }}-gradle-caches-${{ hashFiles('**/*.gradle') }}
restore-keys: |
${{ matrix.java }}-${{ matrix.os }}-gradle-caches-
- name: Cache Gradle wrapper
uses: actions/cache@v2
with:
path: ~/.gradle/wrapper
key: ${{ matrix.java }}-${{ matrix.os }}-gradle-wrapper-${{ hashFiles('**/*.gradle') }}
restore-keys: |
${{ matrix.java }}-${{ matrix.os }}-gradle-wrapper-
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v2
with:
distribution: zulu
java-version: ${{ matrix.java }}
- name: Build
uses: gradle/gradle-build-action@v2
with:
arguments: clean build
- name: Publish
uses: gradle/gradle-build-action@v2
with:
arguments: publishToSonatype closeAndReleaseSonatypeStagingRepository --info -Dorg.gradle.internal.http.socketTimeout=180000 -Dorg.gradle.internal.http.connectionTimeout=180000
env:
SONATYPE_TOKEN_USERNAME: ${{ secrets.SONATYPE_TOKEN_USERNAME }}
SONATYPE_TOKEN_PASSWORD: ${{ secrets.SONATYPE_TOKEN_PASSWORD }}
SONATYPE_STAGING_PROFILE_ID: ${{ secrets.SONATYPE_STAGING_PROFILE_ID }}
GPG_PRIVATE_KEY: ${{ secrets.GPG_PRIVATE_KEY }}
GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}