Release #7
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: Release | |
on: | |
workflow_dispatch: | |
inputs: | |
release-type: | |
description: "The scope of the release (major, minor or patch)." | |
type: choice | |
required: true | |
default: patch | |
options: | |
- patch | |
- minor | |
- major | |
jobs: | |
java-gradle-release: | |
name: Java Gradle | |
uses: bakdata/ci-templates/.github/workflows/[email protected] | |
with: | |
java-version: 17 | |
release-type: "${{ inputs.release-type }}" | |
secrets: | |
github-email: "${{ secrets.GH_EMAIL }}" | |
github-username: "${{ secrets.GH_USERNAME }}" | |
github-token: "${{ secrets.GH_TOKEN }}" |