Skip to content

Commit

Permalink
test workflow fix
Browse files Browse the repository at this point in the history
  • Loading branch information
vinayada1 committed Sep 22, 2023
1 parent 44f0fff commit 42396f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ jobs:
run: |
echo "inputs.version = ${{ inputs.version }}"
for attempt in 1 2 3 4 5; do
if [[ "${{ inputs.version }}" != "edge" && "${{ inputs.version }}" != *"rc"* ]]; then
if [[ -n "${{ inputs.version }}" && "${{ inputs.version }}" != "edge" && "${{ inputs.version }}" != *"rc"* ]]; then
echo "@@@@@ Inside first if"
INPUT_CHANNEL=$(echo "${{ inputs.version }}" | cut -d '.' -f 1,2)
echo "@@@@ INPUT_CHANNE= $INPUT_CHANNEL"
Expand Down

0 comments on commit 42396f4

Please sign in to comment.