diff --git a/ci-templates/auto-rules/no-default.yml b/ci-templates/auto-rules/no-default.yml index 1012ebbeb3305e18bdbe066f7e7a1d836b377c3f..2b9e7e8989164fbf99e954c29e994d13df136a06 100644 --- a/ci-templates/auto-rules/no-default.yml +++ b/ci-templates/auto-rules/no-default.yml @@ -58,22 +58,28 @@ industrial_kinetic_deploy: extends: .ddeploy rules: - if: $DEPLOY && $DEFAULT_DISTRO == "kinetic" - exists: ddeploy.yaml + exists: + - ddeploy.yaml - if: $DEPLOY && $BUILD_KINETIC - exists: ddeploy.yaml + exists: + - ddeploy.yaml industrial_melodic_deploy: extends: .ddeploy rules: - if: $DEPLOY && $DEFAULT_DISTRO == "melodic" - exists: ddeploy.yaml + exists: + - ddeploy.yaml - if: $DEPLOY && $BUILD_MELODIC - exists: ddeploy.yaml + exists: + - ddeploy.yaml industrial_noetic_deploy: extends: .ddeploy rules: - if: $DEPLOY && $DEFAULT_DISTRO == "noetic" - exists: ddeploy.yaml + exists: + - ddeploy.yaml - if: $DEPLOY && $BUILD_NOETIC - exists: ddeploy.yaml + exists: + - ddeploy.yaml