Manual Deployment to Maven Central #53
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: Manual Deployment to Maven Central | |
on: workflow_dispatch | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: "👷 Checkout code" | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: "☕ Set up java" | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'temurin' | |
java-version: '17' | |
cache: maven | |
- name: "🔧 Compile" | |
run: mvn compile | |
publish: | |
needs: build | |
runs-on: ubuntu-latest | |
steps: | |
- name: "👷 Checkout code" | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: "🔑 Import GPG Key" | |
run: | | |
echo "${{ secrets.MAVEN_GPG_PRIVATE_KEY }}" | base64 -d | gpg --batch --import | |
- name: "🛠 Configure GPG to Allow Loopback" | |
run: | | |
mkdir -p ~/.gnupg | |
echo "allow-loopback-pinentry" >> ~/.gnupg/gpg-agent.conf | |
echo "use-agent" >> ~/.gnupg/gpg.conf | |
gpgconf --reload gpg-agent | |
- name: "☕ Set up java" | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'temurin' | |
java-version: '17' | |
cache: maven | |
server-id: ossrh | |
server-username: MAVEN_USERNAME | |
server-password: MAVEN_PASSWORD | |
- name: "🗽 Publish package" | |
run: mvn clean deploy -DskipTests -Prelease -Dgpg.passphrase=${{ secrets.MAVEN_GPG_PASSPHRASE }} | |
env: | |
MAVEN_USERNAME: ${{ secrets.OSSRH_USERNAME }} | |
MAVEN_PASSWORD: ${{ secrets.OSSRH_TOKEN }} | |
MAVEN_GPG_PASSPHRASE: ${{ secrets.MAVEN_GPG_PASSPHRASE }} | |
tag_release: | |
needs: publish | |
runs-on: ubuntu-latest | |
steps: | |
- name: "👷 Checkout code" | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: "📎 Install xmllint" | |
run: sudo apt-get update && sudo apt-get install -y libxml2-utils | |
- name: "📑 Setup release information" | |
run: | | |
pom_version=`xmllint --xpath '/*[local-name()="project"]/*[local-name()="version"]/text()' pom.xml` | |
echo "POM_VERSION=$pom_version" >> $GITHUB_ENV | |
- name: "✏️ Generate release changelog" | |
id: extract-release-changelog | |
uses: heinrichreimer/[email protected] | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
unreleasedOnly: "true" | |
stripHeaders: "true" | |
stripGeneratorNotice: "true" | |
futureRelease: ${{ env.POM_VERSION }} | |
- name: "📍 Create release" | |
uses: actions/create-release@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
tag_name: ${{ env.POM_VERSION }} | |
release_name: v${{ env.POM_VERSION }} | |
draft: false | |
prerelease: false | |
body: ${{ steps.extract-release-changelog.outputs.changelog }} | |
- name: "✏️ Generate full changelog" | |
id: extract-changelog | |
uses: heinrichreimer/[email protected] | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
stripGeneratorNotice: "true" | |
- name: "⛲ Commit files" | |
env: | |
CI_USER: github-actions | |
CI_EMAIL: [email protected] | |
run: | | |
git config --local user.email "$CI_EMAIL" | |
git config --local user.name "$CI_USER" | |
git status | |
git add CHANGELOG.md && git commit -m 'Updated CHANGELOG.md' && echo "push=true" >> $GITHUB_ENV || echo "No changes to CHANGELOG.md" | |
- name: "⏫ Push changes" | |
if: env.push == 'true' | |
env: | |
CI_USER: github-actions | |
CI_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
git push "https://$CI_USER:[email protected]/$GITHUB_REPOSITORY.git" HEAD:master |