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
name: Release on Maven Central and GitHub | |
on: | |
workflow_dispatch: | |
inputs: | |
deploy-maven-central: | |
description: "Deploy to Maven Central" | |
required: true | |
type: boolean | |
default: false | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
shell: "bash" | |
concurrency: | |
group: ${{ github.workflow }} | |
cancel-in-progress: false | |
permissions: | |
contents: write # Required for creating GitHub release | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
# - name: Fail if not running on main branch | |
# if: ${{ github.ref != 'refs/heads/main' }} | |
# uses: actions/github-script@v7 | |
# with: | |
# script: | | |
# core.setFailed('Not running on main branch, github.ref is ${{ github.ref }}. Please start this workflow only on main') | |
- name: Set up Maven Central Repository | |
uses: actions/setup-java@v4 | |
with: | |
distribution: "temurin" | |
java-version: 17 | |
cache: "maven" | |
server-id: ossrh | |
server-username: MAVEN_USERNAME | |
server-password: MAVEN_PASSWORD | |
gpg-private-key: ${{ secrets.OSSRH_GPG_SECRET_KEY }} | |
gpg-passphrase: MAVEN_GPG_PASSPHRASE | |
- name: Build | |
run: mvn --batch-mode -T 1C clean install -DskipTests | |
- name: List secret GPG keys | |
run: gpg --list-secret-keys | |
- name: Publish to Maven Central Repository | |
if: ${{ inputs.deploy-maven-central }} | |
run: mvn --batch-mode deploy -Possrh -DstagingDescription="Deployed via workflow release.yml" | |
env: | |
MAVEN_USERNAME: ${{ secrets.OSSRH_USERNAME }} | |
MAVEN_PASSWORD: ${{ secrets.OSSRH_PASSWORD }} | |
MAVEN_GPG_PASSPHRASE: ${{ secrets.OSSRH_GPG_SECRET_KEY_PASSWORD }} | |
- name: Create GitHub Release | |
run: ./.github/workflows/github_release.sh |