Skip to content
Snippets Groups Projects
Commit 0a3a330a authored by Jon Azpiazu's avatar Jon Azpiazu
Browse files

Fix exists syntax

parent 8ff0c598
No related branches found
No related tags found
1 merge request!70Resolve "Update deprecated deploy job"
Pipeline #58515 passed
...@@ -58,22 +58,28 @@ industrial_kinetic_deploy: ...@@ -58,22 +58,28 @@ industrial_kinetic_deploy:
extends: .ddeploy extends: .ddeploy
rules: rules:
- if: $DEPLOY && $DEFAULT_DISTRO == "kinetic" - if: $DEPLOY && $DEFAULT_DISTRO == "kinetic"
exists: ddeploy.yaml exists:
- ddeploy.yaml
- if: $DEPLOY && $BUILD_KINETIC - if: $DEPLOY && $BUILD_KINETIC
exists: ddeploy.yaml exists:
- ddeploy.yaml
industrial_melodic_deploy: industrial_melodic_deploy:
extends: .ddeploy extends: .ddeploy
rules: rules:
- if: $DEPLOY && $DEFAULT_DISTRO == "melodic" - if: $DEPLOY && $DEFAULT_DISTRO == "melodic"
exists: ddeploy.yaml exists:
- ddeploy.yaml
- if: $DEPLOY && $BUILD_MELODIC - if: $DEPLOY && $BUILD_MELODIC
exists: ddeploy.yaml exists:
- ddeploy.yaml
industrial_noetic_deploy: industrial_noetic_deploy:
extends: .ddeploy extends: .ddeploy
rules: rules:
- if: $DEPLOY && $DEFAULT_DISTRO == "noetic" - if: $DEPLOY && $DEFAULT_DISTRO == "noetic"
exists: ddeploy.yaml exists:
- ddeploy.yaml
- if: $DEPLOY && $BUILD_NOETIC - if: $DEPLOY && $BUILD_NOETIC
exists: ddeploy.yaml exists:
- ddeploy.yaml
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment