Fix curl invocation

This commit is contained in:
Georg Krause 2023-01-10 21:00:00 +01:00
parent b1809d97e7
commit c15d83a550
No known key found for this signature in database
GPG Key ID: 2970D504B2183D22
1 changed files with 2 additions and 2 deletions

View File

@ -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"