mirror of
https://github.com/gogcom/galaxy-integrations-python-api.git
synced 2026-04-17 20:56:53 -04:00
Fix pipeline
This commit is contained in:
@@ -1,13 +1,13 @@
|
||||
stage('Upload to github')
|
||||
{
|
||||
node('ActiveClientWindowsBuilder') {
|
||||
node('ActiveClientMacosxBuilder') {
|
||||
deleteDir()
|
||||
checkout scm
|
||||
withPythonEnv('python') {
|
||||
withCredentials([usernamePassword(credentialsId: 'github_friendsofgalaxy', usernameVariable: 'GITHUB_USERNAME', passwordVariable: 'GITHUB_TOKEN')]) {
|
||||
bat 'pip install -r jenkins/requirements.txt'
|
||||
def version = bat(returnStdout: true, script: 'python setup.py --version').trim()
|
||||
bat "python jenkins/release.py $version"
|
||||
sh 'pip install -r jenkins/requirements.txt'
|
||||
def version = sh(returnStdout: true, script: 'python setup.py --version').trim()
|
||||
sh "python jenkins/release.py $version"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user