Skip to content

Commit 213c968

Browse files
committed
Update deploy-pm4.yml
1 parent 0d6baa8 commit 213c968

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/deploy-pm4.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -274,8 +274,8 @@ jobs:
274274
steps:
275275
- name: Delete instance EKS
276276
run: |
277-
# If inputs.delete is present, set the INSTANCE to the value of delete
278-
if [ -n "${{ inputs.delete }}" ]; then
277+
# If inputs.delete does not equal 'false', set the INSTANCE to the value of inputs.delete
278+
if [ "${{ inputs.delete }}" != "false" ]; then
279279
INSTANCE=${{ inputs.delete }}
280280
else
281281
INSTANCE=$(echo -n ${{env.IMAGE_TAG}} | md5sum | head -c 10)

0 commit comments

Comments
 (0)