We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 282650c commit 2be8240Copy full SHA for 2be8240
.github/workflows/release.yaml
@@ -5,11 +5,19 @@ on:
5
workflow_call:
6
workflow_dispatch:
7
inputs:
8
- version:
9
- description: 'Version to release (major, minor, patch) Ex: 1.0.0'
10
- required: true
+ option:
+ description: 'Select version to release'
+ required: true
11
+ type: choice
12
+ default: 'minor'
13
+ options:
14
+ - major
15
+ - minor
16
+ - patch
17
jobs:
18
csm-release:
19
uses: harishp8889/test-common-github-actions/.github/workflows/csm-release-libs.yaml@main
20
name: Release Go Client Libraries
21
+ with:
22
+ version: ${{ github.event.inputs.option }}
23
secrets: inherit
0 commit comments