From 59549e10652fa93d6ee8ab4b0537a2651dcea604 Mon Sep 17 00:00:00 2001 From: Alan Rynne Date: Thu, 31 Oct 2024 10:50:26 +0100 Subject: [PATCH] fix: Use right path for zip file --- ci-build/Consts.cs | 2 +- ci-build/Program.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ci-build/Consts.cs b/ci-build/Consts.cs index 003e035..6c89610 100644 --- a/ci-build/Consts.cs +++ b/ci-build/Consts.cs @@ -6,7 +6,7 @@ public static class Consts public static readonly InstallerProject[] InstallerManifests = { - new("archicad", [new("SpeckleConnector", "x64/ReleaseAC27/net6.0-windows")]) + new("archicad", [new("SpeckleConnector", "x64/ReleaseAC27/")]) }; } diff --git a/ci-build/Program.cs b/ci-build/Program.cs index cfb82fe..afdb1e9 100644 --- a/ci-build/Program.cs +++ b/ci-build/Program.cs @@ -102,7 +102,7 @@ Target( foreach (var asset in x.Projects) { - var fullPath = Path.Combine(".", asset.ProjectPath, "bin", "Release", asset.TargetName); + var fullPath = Path.Combine(".", asset.ProjectPath, asset.TargetName); if (!Directory.Exists(fullPath)) { throw new InvalidOperationException("Could not find: " + fullPath);