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 95d0c80 commit b13bd16Copy full SHA for b13bd16
src/project_generator.rs
@@ -679,8 +679,10 @@ pub fn generate_project(project_info: &ProjectInfo) -> Result<()> {
679
}
680
681
682
- if save_pypi_publish_file(project_info).is_err() {
683
- bail!("Error creating PYPI publish file");
+ if project_info.use_continuous_deployment {
+ if save_pypi_publish_file(project_info).is_err() {
684
+ bail!("Error creating PYPI publish file");
685
+ }
686
687
688
if project_info.use_multi_os_ci {
0 commit comments