forked from hapifhir/hapi-fhir-jpaserver-starter
-
Notifications
You must be signed in to change notification settings - Fork 20
42 lines (36 loc) · 1.56 KB
/
central_repository.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
name: Publish to Maven Central Repository
on:
workflow_dispatch:
push:
tags:
- "*"
jobs:
build-and-publish-jar:
name: Publish to Maven Central Repository
runs-on: ubuntu-latest
steps:
- name: Checkout the repository
uses: actions/checkout@v4
- name: Setup Java 21
uses: actions/setup-java@v4
with: # running setup-java again overwrites the settings.xml
java-version: "21"
distribution: "adopt"
cache: maven
server-id: ossrh
server-username: OSSRH_USERNAME
server-password: OSSRH_PASSWORD
gpg-private-key: ${{ secrets.MAVEN_GPG_PRIVATE_KEY }}
gpg-passphrase: MAVEN_GPG_PASSPHRASE
- name: Build with Maven
run: mvn package --batch-mode --no-transfer-progress --file pom.xml --projects :matchbox,:matchbox-engine -DskipTests -P release
- name: Publish to Apache Maven Central
run: mvn deploy -P release --file pom.xml --projects :matchbox,:matchbox-engine -DskipTests
env:
OSSRH_USERNAME: ${{ secrets.OSSRH_USERNAME }}
OSSRH_PASSWORD: ${{ secrets.OSSRH_PASSWORD }}
MAVEN_GPG_PASSPHRASE: ${{ secrets.MAVEN_GPG_PASSPHRASE }}
# The requirements are described in https://central.sonatype.org/publish/requirements/
# The secrets are managed in https://github.com/ahdis/matchbox/settings/secrets/actions
# The GPG key pair shall have been distributed to a public key server.
# The username/password is for the account at https://issues.sonatype.org and must be authorized for this project.