Skip to content

Commit 53238cc

Browse files
committed
Release creation stage only check was done based on repo name , organization was not considered because of this release was getting updated to the first repo found in the search not necessarily in the intended organization. Now URL is passed as an argument during release creation step.
1 parent 3ff5902 commit 53238cc

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

.citd/Jenkinsfilek8s

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ pipeline {
159159
def jsonObj = readJsonObject();
160160

161161
withCredentials([usernamePassword(credentialsId: "${env.GITHUB_CREDENTIAL_ID}", passwordVariable: 'PASS', usernameVariable: 'USER_NAME')]) {
162-
execute("python tool-github-deploy/tool-github-deploy/tool-github-deploy.py -rlo=true -gpat=$PASS -rpn=\"${jsonObj.content.projectName}\" -rltv=\"${jsonObj.content.version}\" -rltt=\"${jsonObj.content.version}\" -rlnp=${env.CHANGE_LOG_PATH}")
162+
execute("python tool-github-deploy/tool-github-deploy/tool-github-deploy.py -rlo=true -gpat=$PASS -rporg=${env.GITHUB_URL} -rpn=\"${jsonObj.content.projectName}\" -rltv=\"${jsonObj.content.version}\" -rltt=\"${jsonObj.content.version}\" -rlnp=${env.CHANGE_LOG_PATH}")
163163
}
164164
}
165165
}

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,3 +40,9 @@ Users will see the string "Hello World !!!" being continuously printed on the se
4040
![image](images/serial_terminal.jpg)
4141

4242

43+
44+
- - -
45+
46+
© 2020, Microchip Technology Inc.
47+
48+

0 commit comments

Comments
 (0)