Skip to content

Commit c778665

Browse files
committed
Updates fix check for version file
1 parent 9555f54 commit c778665

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/PMM_PS.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232

3333
- name: PS_VERSION ENV Setup
3434
run: |
35-
if [[ -n "${{ github.event.inputs.ps_version }}" ]]; then
35+
if [[ "${{ github.event.inputs.ps_version }}" != http* ]]; then
3636
PS_VERSION="${{ github.event.inputs.ps_version }}"
3737
PS_VERSION_PATH=$(echo "ps-$PS_VERSION")
3838
PS_VERSION_TRIMED=$(echo ${PS_VERSION%-*})

.github/workflows/PMM_PXC.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: PMM_PXC
1+
name: PMM_PXC
22
on:
33
workflow_dispatch:
44
inputs:
@@ -31,7 +31,7 @@ jobs:
3131

3232
- name: PXC_VERSION ENV Setup
3333
run: |
34-
if [[ -n "${{ github.event.inputs.pxc_version }}" ]]; then
34+
if [[ "${{ github.event.inputs.pxc_version }}" != http* ]]; then
3535
PXC_VERSION="${{ github.event.inputs.pxc_version }}"
3636
PXC_VERSION_PATH=$(echo "pxc-$PXC_VERSION")
3737
PXC_VERSION_TRIMED=$(echo ${PXC_VERSION%-*})

0 commit comments

Comments
 (0)