Skip to content

Commit c5ce31a

Browse files
committed
- removed create release validation as it was not necessary
1 parent 01ccaea commit c5ce31a

1 file changed

Lines changed: 0 additions & 16 deletions

File tree

.github/workflows/pipeline.yml

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -24,22 +24,6 @@ jobs:
2424
create_release: ${{ github.event.inputs.create_release }}
2525

2626
steps:
27-
- name: Validate Job Input
28-
shell: powershell
29-
run: |
30-
[object]$val = $env:create_release
31-
[bool]$bval = $false
32-
[int]$ival = $false
33-
34-
if ([boolean]::TryParse($val, [ref]$bval)) {
35-
$val = $bval.ToString().ToLower()
36-
} elseif ([int32]::TryParse($val, [ref]$ival)) {
37-
$val = ([bool]($ival -eq 0)).ToString().ToLower()
38-
} else {
39-
$val = "false"
40-
}
41-
$env:create_release = $val
42-
4327
- name: SplitRepoName
4428
shell: powershell
4529
run: |

0 commit comments

Comments
 (0)