Fixed a syntax error in pipeline
Some checks reported errors
autoBIGS.cli-bioconda/pipeline/head Something is wrong with the build of this commit

This commit is contained in:
Harrison Deng 2025-02-19 16:57:24 +00:00
parent ca8ecc0478
commit f987417bd3

6
Jenkinsfile vendored
View File

@ -25,8 +25,10 @@ pipeline {
} }
} }
stage("generate recipe") { stage("generate recipe") {
sh 'grayskull pypi autoBIGS.cli --maintainers "Harrison Deng"' steps {
sh 'python patch_recipe.py' sh 'grayskull pypi autoBIGS.cli --maintainers "Harrison Deng"'
sh 'python patch_recipe.py'
}
} }
} }
} }