Change upload method to attachment
This commit is contained in:
parent
645425ee38
commit
1cc91532af
8
Jenkinsfile
vendored
8
Jenkinsfile
vendored
@ -29,9 +29,9 @@ pipeline {
|
|||||||
script {
|
script {
|
||||||
def repoOwner = 'reza'
|
def repoOwner = 'reza'
|
||||||
def repoName = 'go-hello-world'
|
def repoName = 'go-hello-world'
|
||||||
def tagName = 'v1.0.2'
|
def tagName = 'v1.0.3'
|
||||||
def releaseTitle = 'v1.0.2'
|
def releaseTitle = 'v1.0.3'
|
||||||
def releaseDescription = 'v1.0.2'
|
def releaseDescription = 'v1.0.3'
|
||||||
def zipFile = 'hello-world.zip'
|
def zipFile = 'hello-world.zip'
|
||||||
|
|
||||||
def createReleaseResponse = sh(script: """
|
def createReleaseResponse = sh(script: """
|
||||||
@ -45,7 +45,7 @@ pipeline {
|
|||||||
|
|
||||||
sh """
|
sh """
|
||||||
curl -X POST -H "Authorization: token ${GITEA_API_TOKEN}" -H "Content-Type: multipart/form-data" \\
|
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}"
|
"https://git.behzadan.ir/api/v1/repos/${repoOwner}/${repoName}/releases/${releaseID}/assets?name=${zipFile}"
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user