星流平台(aicp):资源组及资源组节点列表openapi #216
This file contains hidden or 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
| name: Publish package to the Maven Central Repository | |
| on: | |
| push: | |
| branches: | |
| - master | |
| jobs: | |
| publish: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Set up Maven Central Repository | |
| uses: actions/setup-java@v2 | |
| with: | |
| java-version: '8' | |
| distribution: 'adopt' | |
| server-id: central | |
| server-username: MAVEN_USERNAME | |
| server-password: MAVEN_PASSWORD | |
| - id: install-secret-key | |
| name: Install gpg secret key | |
| run: | | |
| cat <(echo -e "${{ secrets.OSSRH_GPG_SECRET_KEY }}") | gpg --batch --import | |
| gpg --list-secret-keys | |
| - name: Publish package | |
| env: | |
| MAVEN_USERNAME: ${{ secrets.mvn_central_portal_user_name }} | |
| MAVEN_PASSWORD: ${{ secrets.mvn_central_portal_password }} | |
| run: mvn clean deploy --batch-mode -Dgpg.passphrase=ksyun@123! -Dmaven.skip.Test=true |