Compare commits

...

4 Commits

Author SHA1 Message Date
37e6bbba1f Changed publish step to not throw error if the version is already published
All checks were successful
filterfasta/pipeline/head This commit looks good
2025-01-07 20:14:44 +00:00
b94643d36b Merge branch 'master' into develop
Some checks failed
filterfasta/pipeline/head There was a failure building this commit
2024-11-14 21:20:33 +00:00
9dce2d26b6 Merge branch 'master' into develop
All checks were successful
ydeng/filterfasta/pipeline/head This commit looks good
2023-04-24 09:46:25 -05:00
a6871214a4 Added test to check installation
All checks were successful
ydeng/filterfasta/pipeline/head This commit looks good
2023-04-22 16:33:30 -05:00
2 changed files with 2 additions and 2 deletions

2
.vscode/launch.json vendored
View File

@@ -8,7 +8,7 @@
"name": "Run Fasta Filter",
"type": "python",
"request": "launch",
"program": "${workspaceFolder}/filterfasta/filterfasta.py",
"module": "filterfasta.cli",
"args": [
"reference_standards.fas",
"reference_standards_filtered.fas",

2
Jenkinsfile vendored
View File

@@ -34,7 +34,7 @@ pipeline {
}
steps {
withCredentials([usernamePassword(credentialsId: '4d6f64be-d26d-4f95-8de3-b6a9b0beb311', passwordVariable: 'PASS', usernameVariable: 'USER')]) {
sh returnStdout: 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/*"
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/*"
}
}
}