Removed unecessary nesting in pipeline
All checks were successful
autoBIGS.cli-bioconda/pipeline/head This commit looks good

This commit is contained in:
Harrison Deng 2025-02-26 17:49:37 +00:00
parent 0bc1cb1c51
commit a6d7c71f69

6
Jenkinsfile vendored
View File

@ -45,8 +45,6 @@ pipeline {
sh 'conda build auto-updated-bioconda-recipes/recipes/autobigs-cli --output-folder ./conda-bld'
}
}
stage("publish to bioconda") {
stages {
stage('lint') {
steps {
dir('auto-updated-bioconda-recipes') {
@ -54,7 +52,7 @@ pipeline {
}
}
}
stage('commit') {
stage('pull-request') {
environment {
TOKEN = credentials('github.com')
}
@ -68,5 +66,3 @@ pipeline {
}
}
}
}
}