From 45ea43f32f0e25f576d32d1010e2af4eb51cee06 Mon Sep 17 00:00:00 2001 From: Reza Behzadan Date: Sun, 31 Mar 2024 12:58:09 +0330 Subject: [PATCH] Change content-type to multipart/form-data --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 5418bfa..134074a 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -44,7 +44,7 @@ pipeline { def releaseID = parsedResponse.id sh """ - curl -X POST -H "Authorization: token ${GITEA_API_TOKEN}" -H "Content-Type: application/octet-stream" \\ + curl -X POST -H "Authorization: token ${GITEA_API_TOKEN}" -H "Content-Type: multipart/form-data" \\ --data-binary @${zipFile} \\ "https://git.behzadan.ir/api/v1/repos/${repoOwner}/${repoName}/releases/${releaseID}/assets?name=${zipFile}" """