Skip to content

Release

Release #40

Workflow file for this run

name: Release
on: workflow_dispatch # Manual trigger
jobs:
build:
runs-on: ubuntu-22.04
container:
image: eclipse-temurin:21-jdk
options: --user root
steps:
- uses: actions/checkout@v4
- uses: gradle/wrapper-validation-action@v1
- run: chmod +x ./gradlew
- run: ./gradlew checkVersion build publish --stacktrace --exclude-task test
env:
MAVEN_PUBLISH_CREDENTIALS: ${{ secrets.MAVEN_PUBLISH_CREDENTIALS }}