From c42ad3f0426a967d8d1121060072d5cd27537693 Mon Sep 17 00:00:00 2001 From: Alan Rynne Date: Tue, 10 Sep 2024 18:19:16 +0200 Subject: [PATCH 1/3] chore(ci): Add release branches to CI trigger --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 40f1c30ec..17615866f 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -2,7 +2,7 @@ name: .NET Build and Publish on: push: - branches: ["main", "dev"] # Continuous delivery on every long-lived branch + branches: ["main", "dev", "release/*"] # Continuous delivery on every long-lived branch tags: ["v3.*"] # Manual delivery on every 3.x tag jobs: From ac1e402d1dc60637edf08bbf8e2ce7b4f7f19e57 Mon Sep 17 00:00:00 2001 From: Alan Rynne Date: Wed, 18 Sep 2024 10:35:22 +0200 Subject: [PATCH 2/3] fix: Prevent increment when release commit is tagged (#246) --- GitVersion.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/GitVersion.yml b/GitVersion.yml index b3e72d801..e68806009 100644 --- a/GitVersion.yml +++ b/GitVersion.yml @@ -1,2 +1,6 @@ workflow: GitFlow/v1 next-version: 3.0.0 +branches: + release: + prevent-increment: + when-current-commit-tagged: true From 855fedf3aad75222f86f4e450f0859828039ec33 Mon Sep 17 00:00:00 2001 From: Alan Rynne Date: Fri, 25 Oct 2024 10:32:14 +0200 Subject: [PATCH 3/3] feat: CXPLA-119 Adds civil3d to CI build job (#323) --- Build/Consts.cs | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Build/Consts.cs b/Build/Consts.cs index 10dfdfad6..ef4e1a457 100644 --- a/Build/Consts.cs +++ b/Build/Consts.cs @@ -31,6 +31,15 @@ public static class Consts new("Connectors/Autocad/Speckle.Connectors.Autocad2024", "net48"), new("Connectors/Autocad/Speckle.Connectors.Autocad2025", "net8.0-windows") ] + ), + new( + "civil3d", + [ + new("Connectors/Autocad/Speckle.Connectors.Civil3d2022", "net48"), + new("Connectors/Autocad/Speckle.Connectors.Civil3d2023", "net48"), + new("Connectors/Autocad/Speckle.Connectors.Civil3d2024", "net48"), + new("Connectors/Autocad/Speckle.Connectors.Civil3d2025", "net8.0-windows") + ] ) }; }