Skip to content

Commit

Permalink
Merge pull request #141 from vloup/cloudtrust-1898
Browse files Browse the repository at this point in the history
[CLOUDTRUST-1898] Support making releases through https.
  • Loading branch information
vloup authored Nov 28, 2019
2 parents 221838f + 46bf979 commit 61d4687
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ pipeline {
sh """
cd ${BUILD_PATH}/bin
tar -czvf ${APP}-${params.VERSION}.tar.gz ./keycloak_bridge
curl -u"${USR}:${PWD}" -T "${BUILD_PATH}/bin/${APP}-${params.VERSION}.tar.gz" --keepalive-time 2 "${REPO_URL}/${APP}-${params.VERSION}.tar.gz"
curl -k -u"${USR}:${PWD}" -T "${BUILD_PATH}/bin/${APP}-${params.VERSION}.tar.gz" --keepalive-time 2 "${REPO_URL}/${APP}-${params.VERSION}.tar.gz"
"""
}
def git_url = "${env.GIT_URL}".replaceFirst("^(http[s]?://www\\.|http[s]?://|www\\.)","")
Expand Down

0 comments on commit 61d4687

Please sign in to comment.