Compare commits
No commits in common. "eacb730961baff6cef848188f0069d426c4943de" and "434f9695566d71289ef2bd798c1c6babf1613344" have entirely different histories.
eacb730961
...
434f969556
7
Jenkinsfile
vendored
7
Jenkinsfile
vendored
@ -24,14 +24,13 @@ pipeline {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
stage("publish package") {
|
stage("publish package") {
|
||||||
environment {
|
|
||||||
CREDS = credentials('rs-git-package-registry-ydeng')
|
|
||||||
}
|
|
||||||
when {
|
when {
|
||||||
branch '**/master'
|
branch '**/master'
|
||||||
}
|
}
|
||||||
steps {
|
steps {
|
||||||
sh returnStatus: true, script: 'python -m twine upload --repository-url https://git.reslate.systems/api/packages/${CREDS_USR}/pypi -u ${CREDS_USR} -p ${CREDS_PSW} --non-interactive --disable-progress-bar --verbose dist/*'
|
withCredentials([usernamePassword(credentialsId: 'rs-git-package-registry-ydeng', passwordVariable: 'PASS', usernameVariable: 'USER')]) {
|
||||||
|
sh returnStatus: true, script: 'python -m twine upload --repository-url https://git.reslate.systems/api/packages/${USER}/pypi -u ${USER} -p ${PASS} --non-interactive --disable-progress-bar --verbose dist/*'
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -64,7 +64,6 @@ def rename_by_csv(
|
|||||||
row[current_col_ind] in replacement_dict
|
row[current_col_ind] in replacement_dict
|
||||||
and replacement_dict[row[current_col_ind]] != row[become_col_ind]
|
and replacement_dict[row[current_col_ind]] != row[become_col_ind]
|
||||||
):
|
):
|
||||||
# Check if there's a duplicate key for different values.
|
|
||||||
raise Exception("Duplicate current key.")
|
raise Exception("Duplicate current key.")
|
||||||
replacement_dict[row[current_col_ind]] = row[become_col_ind]
|
replacement_dict[row[current_col_ind]] = row[become_col_ind]
|
||||||
for subitem_path, subitem, match in candidates:
|
for subitem_path, subitem, match in candidates:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user