admin4j dependencies #157
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This workflow will build a package using Maven and then publish it to GitHub packages when a release is created | |
# For more information see: https://github.com/actions/setup-java/blob/main/docs/advanced-usage.md#apache-maven-with-a-settings-path | |
name: dependencies dependencies | |
on: | |
release: | |
types: [ created ] | |
push: | |
branches: | |
- master | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
packages: write | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up JDK 8 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: 8 | |
distribution: temurin | |
server-id: ossrh | |
server-username: MAVEN_USERNAME | |
server-password: MAVEN_PASSWORD | |
gpg-private-key: ${{ secrets.GPG_PRIVATE_KEY }} | |
gpg-passphrase: MAVEN_GPG_PASSPHRASE | |
- name: Build with Maven | |
run: mvn -B -Dmaven.test.skip=true clean install --file admin4j-dependencies/pom.xml | |
- name: Set up Apache Maven Central | |
run: mvn deploy -Possrh --file admin4j-dependencies/pom.xml | |
env: | |
MAVEN_GPG_PASSPHRASE: ${{ secrets.GPG_PASSWORD }} | |
MAVEN_USERNAME: ${{ secrets.OSSRH_USER }} | |
MAVEN_PASSWORD: ${{ secrets.OSSRH_PASSWORD }} | |
GITHUB_TOKEN: ${{ github.token }} | |
# GPG_PRIVATE_KEY: | |
# -----BEGIN PGP PRIVATE KEY BLOCK----- | |
# *** | |
# -----END PGP PRIVATE KEY BLOCK----- | |
# GPG_PASSWORD GPG_PRIVATE_KEY 的密码 |