-
Notifications
You must be signed in to change notification settings - Fork 0
34 lines (34 loc) · 1.22 KB
/
maven-deploy.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
name: Maven Deploy
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
release:
types: [ published ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: 11
server-id: ossrh
server-username: OSSRH_USERNAME
server-password: OSSRH_PASSWORD
gpg-private-key: ${{ secrets.OSSRH_GPG_SECRET_KEY }}
# helps identify build failures due to expired keys
- run: gpg --list-secret-keys --keyid-format=long
- run: mvn -B -ntp versions:set -DnewVersion=$(./version.sh)
- run: mvn -B -ntp clean deploy
env:
OSSRH_USERNAME: ${{ secrets.OSSRH_USERNAME }}
OSSRH_PASSWORD: ${{ secrets.OSSRH_PASSWORD }}
# this env var needs to be named 'MAVEN_GPG_PASSPHRASE'. if a different name is desired,
# it needs to be specified here and in the maven-gpg-plugin configuration variable 'passphraseEnvName'
# see issue: https://github.com/actions/setup-java/issues/668
MAVEN_GPG_PASSPHRASE: ${{ secrets.OSSRH_GPG_SECRET_KEY_PASSWORD }}