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() } } }