publish artifact #25
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 install Python dependencies, and publishes a new release. | |
# For more information see: https://packaging.python.org/guides/publishing-package-distribution-releases-using-github-actions-ci-cd-workflows/ | |
name: publish artifact | |
on: | |
workflow_dispatch: | |
release: | |
types: [published] | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
token: ${{ secrets.ADMIN_TOKEN }} | |
- name: Configure GPG Key | |
run: | | |
cat <(echo -e "${{ secrets.GPG_SIGNING_KEY }}") | gpg --batch --import | |
gpg --list-secret-keys --keyid-format LONG | |
- name: Set up Maven Central Repository | |
uses: actions/setup-java@v4 | |
with: | |
java-version: 11 | |
distribution: zulu | |
server-id: ossrh | |
server-username: ${{ secrets.MAVEN_USERNAME }} | |
server-password: ${{ secrets.MAVEN_PASSWORD }} | |
gpg-passphrase: ${{ secrets.GPG_PASSPHRASE }} | |
- name: Publish package | |
run: mvn clean deploy $MVN_ARGS -P central --no-transfer-progress --batch-mode -DskipTests -Dskip.unit.tests=true -Dgpg.passphrase=${{ secrets.GPG_PASSPHRASE }} | |
env: | |
MAVEN_USERNAME: ${{ secrets.MAVEN_USERNAME }} | |
MAVEN_PASSWORD: ${{ secrets.MAVEN_PASSWORD }} | |
MVN_ARGS: "--settings build-settings.xml" |