diff --git a/src/ci/common.fsx b/src/ci/common.fsx index b912aae3..5c1ee855 100644 --- a/src/ci/common.fsx +++ b/src/ci/common.fsx @@ -50,7 +50,7 @@ let ghError msg = Error(msg) let appZipFileName app (ctx: Internal.StageContext) = - $"{app.Name}-{ctx.GetCmdArg(args.dotnetRuntime)}-{ctx.GetCmdArg(args.release)}.zip" + $"{app.Name}-{ctx.GetCmdArg(args.dotnetRuntime)}-{versionNumber (ctx.GetCmdArg(args.release))}.zip" let appZipPath app (ctx: Internal.StageContext) = System.IO.Path.GetFullPath(appZipFileName app ctx) diff --git a/src/language-server/build.fsx b/src/language-server/build.fsx index 06e1f2e3..9caceba1 100644 --- a/src/language-server/build.fsx +++ b/src/language-server/build.fsx @@ -92,9 +92,7 @@ let zipAndUploadAsset app = workingDir app.Path whenCmdArg args.release - echo - "Skipping upload, as it was uploaded on https://github.com/dev-cycles/contextive/actions/runs/8232357150" - //run (fun ctx -> $"gh release upload {ctx.GetCmdArg(args.release)} {appZipPath app ctx}") + run (fun ctx -> $"gh release upload {ctx.GetCmdArg(args.release)} {appZipPath app ctx}") } } } diff --git a/src/vscode/build.fsx b/src/vscode/build.fsx index 9ddc7b81..399f6472 100644 --- a/src/vscode/build.fsx +++ b/src/vscode/build.fsx @@ -113,6 +113,11 @@ pipeline "Contextive VsCode Extension" { workingDir "vscode/contextive" whenCmdArg args.release whenCmdArg args.vscePlatform + // Temporary to retry intermittent issues with github assets upload/download on https://github.com/dev-cycles/contextive/actions/runs/8240804079/job/22536988921 + whenCmd { + name args.dotnetRuntime.Name.Names.Head + acceptValues [ "linux-x64"; "osx-arm64" ] + } stage "Package" { run (fun ctx ->