Mentions légales du service

Skip to content
Snippets Groups Projects
Commit c0bff306 authored by PETIT Manuel's avatar PETIT Manuel
Browse files

Fix incorrect YAML indentation in .gitlab-ci.yml

parent a0ec97a1
No related branches found
No related tags found
No related merge requests found
Pipeline #1097375 failed
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment