From 7626f42cd5711c874d6d42eb66c7bbb8d1f3a4dd Mon Sep 17 00:00:00 2001 From: Voomra Date: Mon, 18 Aug 2025 12:19:55 +0300 Subject: [PATCH] =?UTF-8?q?build(ci):=20fix:=20=D0=B1=D0=B5=D0=B7=D0=BE?= =?UTF-8?q?=D0=BF=D0=B0=D1=81=D0=BD=D0=BE=D1=81=D1=82=D1=8C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.jenkinsfile b/.jenkinsfile index 79cbf23..cd93901 100644 --- a/.jenkinsfile +++ b/.jenkinsfile @@ -34,13 +34,13 @@ pipeline { } """ - sh(script: """ + sh(script: ''' curl -X POST \ -H "Authorization: token ${GITEA_TOKEN}" \ -H "Content-Type: application/json" \ -d '${releaseData}' \ "${GITEA_API_URL}/repos/${GITEA_REPO_OWNER}/${GITEA_REPO_NAME}/releases" - """, returnStdout: true).trim() + ''', returnStdout: true).trim() } } }