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 6aeb601 commit 582c167Copy full SHA for 582c167
.github/workflows/release-source.yml
@@ -35,8 +35,10 @@ jobs:
35
steps:
36
- name: Validate required inputs
37
run: |
38
- [[ "${{ inputs.release_version }}" ]] || { echo "release_version input is empty" ; exit 1; }
39
-
+ if [ -z "${{ inputs.release_version }}" ]; then
+ echo "release_version input is empty"
40
+ exit 1
41
+ fi
42
- name: check branch
43
if: ${{ github.ref_name != 'develop' }}
44
0 commit comments