@@ -148,7 +148,7 @@ export class KeygenPublisher extends HttpPublisher {
148148 await httpExecutor . doApiRequest ( configureRequestOptions ( upload , null , "PUT" ) , this . context . cancellationToken , requestProcessor )
149149 }
150150
151- private async createArtifact ( releaseId : any , fileName : string , dataLength : number ) : Promise < { data ?: KeygenArtifact ; errors ?: KeygenError [ ] } > {
151+ private createArtifact ( releaseId : any , fileName : string , dataLength : number ) : Promise < { data ?: KeygenArtifact ; errors ?: KeygenError [ ] } > {
152152 const upload : RequestOptions = {
153153 hostname : this . hostname ,
154154 path : `${ this . basePath } /artifacts` ,
@@ -208,7 +208,7 @@ export class KeygenPublisher extends HttpPublisher {
208208 }
209209 }
210210
211- private async getRelease ( ) : Promise < { data ?: KeygenRelease ; errors ?: KeygenError [ ] } > {
211+ private getRelease ( ) : Promise < { data ?: KeygenRelease ; errors ?: KeygenError [ ] } > {
212212 const req : RequestOptions = {
213213 hostname : this . hostname ,
214214 path : `${ this . basePath } /releases/${ this . version } ?product=${ this . info . product } ` ,
@@ -222,7 +222,7 @@ export class KeygenPublisher extends HttpPublisher {
222222 return parseJson ( httpExecutor . request ( configureRequestOptions ( req , this . auth , "GET" ) , this . context . cancellationToken , null ) )
223223 }
224224
225- private async createRelease ( ) : Promise < { data ?: KeygenRelease ; errors ?: KeygenError [ ] } > {
225+ private createRelease ( ) : Promise < { data ?: KeygenRelease ; errors ?: KeygenError [ ] } > {
226226 const req : RequestOptions = {
227227 hostname : this . hostname ,
228228 path : `${ this . basePath } /releases` ,
0 commit comments