From c0bff30611314c34e55bb4658129db78ab241d81 Mon Sep 17 00:00:00 2001 From: manuelpett <manuel.petit@inria.fr> Date: Tue, 14 Jan 2025 18:21:42 +0100 Subject: [PATCH] Fix incorrect YAML indentation in .gitlab-ci.yml --- .gitlab-ci.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index a20ce53..f16fe0a 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -114,11 +114,11 @@ create_release: - chmod +x /usr/local/bin/release-cli script: - echo "Creating release and attaching tutorials.zip..." - - - | - - # Set a dummy tag if CI_COMMIT_TAG is not defined - - if [ -z "$CI_COMMIT_TAG" ]; then - - export CI_COMMIT_TAG="test-dummy-tag" - - fi + - | + # Set a dummy tag if CI_COMMIT_TAG is not defined + if [ -z "$CI_COMMIT_TAG" ]; then + export CI_COMMIT_TAG="test-dummy-tag" + fi - echo "Using tag: $CI_COMMIT_TAG" rules: - if: '$CI_COMMIT_TAG' # Run only on tag pipelines, e.g., for release tags -- GitLab