Change upload method to attachment

This commit is contained in:
Reza Behzadan 2024-03-31 13:09:14 +03:30
parent 645425ee38
commit 1cc91532af

8
Jenkinsfile vendored
View File

@ -29,9 +29,9 @@ pipeline {
script {
def repoOwner = 'reza'
def repoName = 'go-hello-world'
def tagName = 'v1.0.2'
def releaseTitle = 'v1.0.2'
def releaseDescription = 'v1.0.2'
def tagName = 'v1.0.3'
def releaseTitle = 'v1.0.3'
def releaseDescription = 'v1.0.3'
def zipFile = 'hello-world.zip'
def createReleaseResponse = sh(script: """
@ -45,7 +45,7 @@ pipeline {
sh """
curl -X POST -H "Authorization: token ${GITEA_API_TOKEN}" -H "Content-Type: multipart/form-data" \\
--data-binary @${zipFile} \\
-F 'attachment=@${zipFile};type=application/zip' \\
"https://git.behzadan.ir/api/v1/repos/${repoOwner}/${repoName}/releases/${releaseID}/assets?name=${zipFile}"
"""