Skip to content

Publish Minor Package #1

Publish Minor Package

Publish Minor Package #1

Workflow file for this run

name: Publish Minor Package
on:
workflow_dispatch:
inputs:
publish_to_maven:
description: 'True to publish the artifacts to maven repository, false to skip the step'
default: true
required: false
type: boolean
jobs:
build-publish-package:
uses: IABTechLab/uid2-shared-actions/.github/workflows/shared-java-publish-versioned-package.yaml@main
with:
release_type: 'Minor'
publish_to_maven: ${{ inputs.publish_to_maven }}
java_version: "8"
secrets: inherit