From c15d83a5500fccc581759213988c7dd49452923b Mon Sep 17 00:00:00 2001 From: Georg Krause Date: Tue, 10 Jan 2023 21:00:00 +0100 Subject: [PATCH] Fix curl invocation --- .gitlab-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 221fce1..5f7753e 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -163,11 +163,11 @@ trigger-fdroid-update-develop: only: - develop image: curlimages/curl:7.87.0 - script: "curl https://fdroid.funkwhale.audio/hooks/update-index?name=audio.funkwhale.ffa.dev&version=$CI_COMMIT_SHORT_SHA" + script: curl "https://fdroid.funkwhale.audio/hooks/update-index?name=audio.funkwhale.ffa.dev&version=$CI_COMMIT_SHORT_SHA" trigger-fdroid-update-release: stage: .post only: - tags image: curlimages/curl:7.87.0 - script: "curl https://fdroid.funkwhale.audio/hooks/update-index?name=audio.funkwhale.ffa&version=$CI_COMMIT_SHORT_SHA" + script: curl "https://fdroid.funkwhale.audio/hooks/update-index?name=audio.funkwhale.ffa&version=$CI_COMMIT_SHORT_SHA"