From 91b6db5ac0fda2046a561d51be3d440e1254942f Mon Sep 17 00:00:00 2001 From: Ivo Anjo Date: Wed, 28 Jun 2023 15:21:12 +0100 Subject: [PATCH] Fix bug in yaml syntax introduced in #182 (#184) **What does this PR do?**: Fix a bug in YAML syntax introduced in #182. **Motivation**: Fix broken CI step. **Additional Notes**: HOW CAN YAML BE MORE ANNOYING THAN JSON. **How to test the change?**: Validate that GitLab CI pipeline step runs. --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 2b0616b7f..2213df7f3 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -36,5 +36,5 @@ report_gitlab_CI_status: when: always stage: .post script: - - echo "TIP: If you see this failing, it's because something else in the GitLab pipeline failed. Follow the link to the pipeline and check for other things that failed prior to this step." + - "echo TIP: If you see this failing, something else in the GitLab pipeline failed. Follow the link to the pipeline and check for other things that failed prior to this step." - exit ${STATUS}