Release #1
Workflow file for this run
This file contains hidden or 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: | |
| bump: | |
| description: 'Version part to bump' | |
| required: true | |
| type: choice | |
| options: | |
| - patch | |
| - minor | |
| - major | |
| default: patch | |
| version: | |
| description: 'Explicit release version like 5.13.2 (overrides bump)' | |
| required: false | |
| type: string | |
| release_notes: | |
| description: 'Release notes markdown (empty — auto-generated from pull requests)' | |
| required: false | |
| type: string | |
| jobs: | |
| release: | |
| uses: qonversion/shared-sdk-workflows/.github/workflows/release.yml@main | |
| with: | |
| bump: ${{ inputs.bump }} | |
| version: ${{ inputs.version }} | |
| release_notes: ${{ inputs.release_notes }} | |
| secrets: | |
| GH_TOKEN: ${{ secrets.GH_TOKEN }} |