-
Notifications
You must be signed in to change notification settings - Fork 12
37 lines (34 loc) · 1.34 KB
/
release.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
# This workflow will release project to Sonatype.
# For more information see: https://docs.github.com/en/actions/guides/publishing-java-packages-with-maven
name: Publish to the Maven Central Repository
on:
release:
types: [created]
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
ref: master
token: ${{ secrets.PAT }}
- name: Configure Git User
run: |
git config user.email "[email protected]"
git config user.name "NingZhang-e"
- name: Set up Java and Maven Central Repository
uses: actions/setup-java@v1
with:
java-version: 11
architecture: x64
server-id: ossrh
server-username: MAVEN_USERNAME
server-password: MAVEN_PASSWORD
gpg-private-key: ${{ secrets.MAVEN_GPG_PRIVATE_KEY }}
gpg-passphrase: MAVEN_GPG_PASSPHRASE
- name: Release and deploy to Sonatype repo
run: mvn --batch-mode release:prepare release:perform -Dusername=NingZhang-e -Dgoals=deploy -DdryRun=false -Dresume=false '-Darguments=-DskipTests -Dformatter.skip=true' -P deploy
env:
MAVEN_USERNAME: ${{ secrets.OSSRH_USERNAME }}
MAVEN_PASSWORD: ${{ secrets.OSSRH_TOKEN }}
MAVEN_GPG_PASSPHRASE: ${{ secrets.MAVEN_GPG_PASSPHRASE }}