We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5b18c17 commit e266415Copy full SHA for e266415
Jenkinsfile
@@ -92,6 +92,26 @@ pipeline {
92
}
93
94
95
+ stage('Release') {
96
+ when {
97
+ environment name: 'PYTHON_VERSION', value: '3.11'
98
+ buildingTag()
99
+ }
100
+ environment {
101
+ PACKAGE_NAME = 'version-query'
102
+ VERSION = sh(script: 'python3 -m version_query .', returnStdout: true).trim()
103
104
+ steps {
105
+ script {
106
+ githubUtils.createRelease([
107
+ "dist/${PACKAGE_NAME.replace('-', '_')}-${VERSION}-py3-none-any.whl",
108
+ "dist/${PACKAGE_NAME}-${VERSION}.tar.gz",
109
+ "dist/${PACKAGE_NAME}-${VERSION}.zip"
110
+ ])
111
112
113
114
+
115
116
117
0 commit comments