From 896eae5d9fbc8a443daded32e7e2da4ed1cd5a2a Mon Sep 17 00:00:00 2001 From: Philipp Stadler <hello@phstadler.com> Date: Thu, 18 Jul 2024 09:51:00 +0200 Subject: [PATCH] fix: add missing quotes in CI config --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 79c68a1..c69e80d 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -34,7 +34,7 @@ changelog: GIT_DEPTH: 0 # avoid shallow clone to give cliff all the info it needs stage: build script: - - curl -H "PRIVATE-TOKEN: $COMMON_CI_API_TOKEN" 'https://gitlab.phaidra.org/api/v4/projects/1469/repository/files/cliff.toml/raw/?ref=main' > cliff.toml + - 'curl -H "PRIVATE-TOKEN: $COMMON_CI_API_TOKEN" "https://gitlab.phaidra.org/api/v4/projects/1469/repository/files/cliff.toml/raw/?ref=main" > cliff.toml' - git-cliff --latest -o CHANGELOG.md artifacts: paths: -- GitLab