We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fb5b1e6 commit 6de4ce7Copy full SHA for 6de4ce7
.github/workflows/prepare-release.yml
@@ -44,7 +44,9 @@ jobs:
44
45
validate_beta_version "${{ inputs.candidate-beta }}" "candidate-beta"
46
validate_beta_version "${{ inputs.current-beta }}" "current-beta"
47
- validate_stable_version "${{ inputs.candidate-stable }}" "candidate-stable"
+ if [[ ! -z "${{ inputs.candidate-stable }}" ]]; then
48
+ validate_stable_version "${{ inputs.candidate-stable }}" "candidate-stable"
49
+ fi
50
validate_stable_version "${{ inputs.current-stable }}" "current-stable"
51
shell: bash
52
0 commit comments