Skip to content

Publish package to the Maven Central Repository #54

Publish package to the Maven Central Repository

Publish package to the Maven Central Repository #54

Workflow file for this run

name: Publish package to the Maven Central Repository
on:
workflow_dispatch:
inputs:
release-version:
required: false
description: Release-version (not required)
next-version:
required: false
description: Next development-version. (not required)
java-version:
required: true
default: '21'
description: Java-version to use for the deployment.
jobs:
call-workflow:
uses: 42BV/42-github-workflows/.github/workflows/maven-release.yml@main
secrets: inherit
with:
release-version: ${{ github.event.inputs.release-version }}
next-version: ${{ github.event.inputs.next-version }}
java-version: ${{ github.event.inputs.java-version }}