File tree Expand file tree Collapse file tree 1 file changed +12
-3
lines changed Expand file tree Collapse file tree 1 file changed +12
-3
lines changed Original file line number Diff line number Diff line change @@ -15,9 +15,18 @@ def main() -> None:
15
15
16
16
vsix_path = Path (dist_path , f"robotcode-{ current_version } .vsix" )
17
17
18
- run (f"npx vsce publish -i { vsix_path } " , shell = True )
19
- run (f"npx ovsx publish { vsix_path } " , shell = True )
20
- run (f"poetry publish --username { os .environ ['PYPI_USERNAME' ]} --password { os .environ ['PYPI_PASSWORD' ]} " , shell = True )
18
+ print ("publish to vscode marketplace..." )
19
+ run (f"npx vsce publish -i { vsix_path } " , shell = True , timeout = 600 )
20
+
21
+ print ("publish to openVSX..." )
22
+ run (f"npx ovsx publish { vsix_path } " , shell = True , timeout = 600 )
23
+
24
+ print ("publish to PyPi..." )
25
+ run (
26
+ f"poetry publish --username { os .environ ['PYPI_USERNAME' ]} --password { os .environ ['PYPI_PASSWORD' ]} " ,
27
+ shell = True ,
28
+ timeout = 600 ,
29
+ )
21
30
22
31
23
32
if __name__ == "__main__" :
You can’t perform that action at this time.
0 commit comments