We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0d6baa8 commit 213c968Copy full SHA for 213c968
.github/workflows/deploy-pm4.yml
@@ -274,8 +274,8 @@ jobs:
274
steps:
275
- name: Delete instance EKS
276
run: |
277
- # If inputs.delete is present, set the INSTANCE to the value of delete
278
- if [ -n "${{ inputs.delete }}" ]; then
+ # If inputs.delete does not equal 'false', set the INSTANCE to the value of inputs.delete
+ if [ "${{ inputs.delete }}" != "false" ]; then
279
INSTANCE=${{ inputs.delete }}
280
else
281
INSTANCE=$(echo -n ${{env.IMAGE_TAG}} | md5sum | head -c 10)
0 commit comments