File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 22 "name" : " swift-vscode" ,
33 "displayName" : " Swift" ,
44 "description" : " Swift Language Support for Visual Studio Code." ,
5- "version" : " 2.8 .0" ,
5+ "version" : " 2.10 .0" ,
66 "publisher" : " swiftlang" ,
77 "icon" : " icon.png" ,
88 "repository" : {
Original file line number Diff line number Diff line change @@ -58,13 +58,13 @@ const repo = repository.split("/")[1];
5858 const files = await decompress ( "artifacts.zip" , process . cwd ( ) ) ;
5959 console . log ( `Downloaded artifact(s): ${ files . map ( f => f . path ) . join ( ", " ) } ` ) ;
6060 const newName = process . env [ "VSCODE_SWIFT_VSIX" ] || "vscode-swift.vsix" ;
61- const releaseVSIX = files . find ( f => / s w i f t - v s c o d e - \d .\d .\d - \d + .v s i x / m. test ( f . path ) ) ;
61+ const releaseVSIX = files . find ( f => / s w i f t - v s c o d e - \d + .\d + .\d + - \d + .v s i x / m. test ( f . path ) ) ;
6262 if ( ! releaseVSIX ) {
6363 console . error ( "Cound not find vscode-swift release VSIX in artifact bundle" ) ;
6464 process . exit ( 1 ) ;
6565 }
6666 await rename ( releaseVSIX . path , newName ) ;
67- const prereleaseVSIX = files . find ( f => / s w i f t - v s c o d e - \d .\d .\d { 8 } - \d + .v s i x / m. test ( f . path ) ) ;
67+ const prereleaseVSIX = files . find ( f => / s w i f t - v s c o d e - \d + .\d + .\d { 8 } - \d + .v s i x / m. test ( f . path ) ) ;
6868 if ( ! prereleaseVSIX ) {
6969 console . error ( "Cound not find vscode-swift pre-release VSIX in artifact bundle" ) ;
7070 process . exit ( 1 ) ;
You can’t perform that action at this time.
0 commit comments