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 490572a commit 76238b9Copy full SHA for 76238b9
build/pypi.ts
@@ -76,13 +76,16 @@ class pypi {
76
77
78
pythonBuild () {
79
- execSync(`cd ${this.tempPyDir} && python -m build`);
80
- execSync(`cd ${this.tempPyDir} && twine upload dist/*`, {
+ const output1 = execSync(`cd ${this.tempPyDir} && python -m build`);
+ console.log(output1.toString());
81
+
82
+ const output2 = execSync(`cd ${this.tempPyDir} && twine upload dist/*`, {
83
env: {
84
TWINE_USERNAME: '__token__',
85
TWINE_PASSWORD: this.pypiApiSecret
86
}
87
});
88
+ console.log(output2.toString());
89
90
91
0 commit comments