This runs standard maven release installs with standard flags used by the IKMDev team for Major, Minor, and Patch SemVer increment.
Automation Team
Create a new release in the .github/workflows folder, as described in the GitHub Documentation. Add the following code, or something like it:
env:
BRANCH_NAME: ${{github.ref_name}}
TRUNK_BRANCH_NAME: 'main'
jobs:
release:
name: Release
runs-on: ubuntu-24.04
if: github.repository_owner == 'ikmdev'
steps:
- name: Verify Branch
if: env.BRANCH_NAME != env.TRUNK_BRANCH_NAME
run: |
echo "ERROR: Attempting to release from branch ${{env.BRANCH_NAME}}. Release from ${{env.TRUNK_BRANCH_NAME}} branch only"
exit 1
- name: Release IKMDEV Code
uses: ikmdev/maven-release-action@v1.1.0
with:
ikmdevops_pat: ${{secrets.IKMDEVOPS_PAT_TOKEN}}
github_token: ${{secrets.GITHUB_TOKEN}}
ossrh_username: ${{secrets.OSSRH_TOKEN_USER}}
ossrh_token: ${{secrets.OSSRH_TOKEN_PASS}}
gpg_key: ${{secrets.GPG_KEY}}
gpg_passphrase: ${{secrets.GPG_PASSPHRASE}}Technical and non-technical issues can be reported to the Issue Tracker.
Contributions can be submitted via pull requests. Please check the contribution guide for more details.