-
Notifications
You must be signed in to change notification settings - Fork 8
31 lines (29 loc) · 978 Bytes
/
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
name: build
on:
release:
types: ['published']
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: set fake tty # https://github.com/actions/runner/issues/241
shell: 'script -q -e -c "bash {0}"'
run: |
export GPG_TTY=$(tty)
- name: Set up Apache Maven Central
uses: actions/setup-java@v3
with:
distribution: 'adopt'
java-version: '11'
server-id: sonatype-nexus-staging
server-username: MAVEN_USERNAME
server-password: MAVEN_CENTRAL_TOKEN
gpg-private-key: ${{ secrets.MAVEN_GPG_PRIVATE_KEY }}
gpg-passphrase: MAVEN_GPG_PASSPHRASE
- name: Publish to Apache Maven Central
run: mvn deploy
env:
MAVEN_USERNAME: ${{ secrets.MAVEN_USERNAME }}
MAVEN_CENTRAL_TOKEN: ${{ secrets.MAVEN_CENTRAL_TOKEN }}
MAVEN_GPG_PASSPHRASE: ${{ secrets.MAVEN_GPG_PASSPHRASE }}