framework Deploy #15
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: framework Deploy | |
on: | |
release: | |
types: [ created ] | |
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 package --file pom.xml | |
- name: Set up Apache Maven Central | |
run: mvn -Dmaven.test.skip=true deploy -Possrh -N --file 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 的密码 |