Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| c42ad3f042 | |||
| e75ca72abd | |||
| 7e4125cb93 | |||
| 0a568ac9fd | |||
| 859193be37 | |||
| 49c2494d3c |
@@ -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:
|
||||
@@ -52,6 +52,7 @@ jobs:
|
||||
steps:
|
||||
- name: 🔫 Trigger Build Installers
|
||||
uses: ALEEF02/workflow-dispatch@v3.0.0
|
||||
continue-on-error: true
|
||||
with:
|
||||
workflow: Build Installers
|
||||
repo: specklesystems/connector-installers
|
||||
@@ -64,6 +65,10 @@ jobs:
|
||||
display-workflow-run-url: true
|
||||
display-workflow-run-url-interval: 10s
|
||||
|
||||
- uses: geekyeggo/delete-artifact@v5
|
||||
with:
|
||||
name: output-*
|
||||
|
||||
test:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
|
||||
@@ -1,10 +1,2 @@
|
||||
workflow: GitFlow/v1
|
||||
next-version: 3.0.0
|
||||
mode: ManualDeployment
|
||||
branches:
|
||||
main:
|
||||
label: rc
|
||||
develop:
|
||||
label: beta
|
||||
unknown:
|
||||
increment: None
|
||||
|
||||
@@ -264,7 +264,9 @@ Global
|
||||
{20751904-0DFC-4126-BF2A-834B53841010}.Local|Any CPU.ActiveCfg = Local|Any CPU
|
||||
{20751904-0DFC-4126-BF2A-834B53841010}.Local|Any CPU.Build.0 = Local|Any CPU
|
||||
{7F1FDCF2-0CE8-4119-B3C1-F2CC6D7E1C36}.Local|Any CPU.ActiveCfg = Local|Any CPU
|
||||
{7F1FDCF2-0CE8-4119-B3C1-F2CC6D7E1C36}.Local|Any CPU.Build.0 = Local|Any CPU
|
||||
{19424B55-058C-4E9C-B86F-700AEF9EAEC3}.Local|Any CPU.ActiveCfg = Local|Any CPU
|
||||
{19424B55-058C-4E9C-B86F-700AEF9EAEC3}.Local|Any CPU.Build.0 = Local|Any CPU
|
||||
{881D71A3-D276-4108-98C6-0FFD32129B9C}.Local|Any CPU.ActiveCfg = Local|Any CPU
|
||||
{881D71A3-D276-4108-98C6-0FFD32129B9C}.Local|Any CPU.Build.0 = Local|Any CPU
|
||||
{259A84F0-2D1E-49DE-9137-93BE6858A52C}.Local|Any CPU.ActiveCfg = Local|Any CPU
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
using Speckle.Objects.Geometry;
|
||||
using Speckle.Objects.Geometry;
|
||||
using Speckle.Sdk;
|
||||
using Speckle.Sdk.Host;
|
||||
using Speckle.Sdk.Logging;
|
||||
@@ -30,7 +30,7 @@ public static class Connector
|
||||
application,
|
||||
version,
|
||||
new(MinimumLevel: SpeckleLogLevel.Information, Console: true, File: new(Path: "SpeckleCoreLog.txt")),
|
||||
new(Console: true, Otel: new())
|
||||
new(Console: false, Otel: new())
|
||||
);
|
||||
#else
|
||||
var config = new SpeckleConfiguration(
|
||||
@@ -38,18 +38,18 @@ public static class Connector
|
||||
version,
|
||||
new(
|
||||
MinimumLevel: SpeckleLogLevel.Information,
|
||||
Console: true,
|
||||
Console: false,
|
||||
File: new(Path: "SpeckleCoreLog.txt"),
|
||||
Otel: new(
|
||||
Endpoint: "https://seq.speckle.systems/ingest/otlp/v1/logs",
|
||||
Headers: new() { { "X-Seq-ApiKey", "agZqxG4jQELxQQXh0iZQ" } }
|
||||
Endpoint: "https://seq-dev.speckle.systems/ingest/otlp/v1/logs",
|
||||
Headers: new() { { "X-Seq-ApiKey", "y5YnBp12ZE1Czh4tzZWn" } }
|
||||
)
|
||||
),
|
||||
new(
|
||||
Console: false,
|
||||
Otel: new(
|
||||
Endpoint: "https://seq.speckle.systems/ingest/otlp/v1/traces",
|
||||
Headers: new() { { "X-Seq-ApiKey", "agZqxG4jQELxQQXh0iZQ" } }
|
||||
Endpoint: "https://seq-dev.speckle.systems/ingest/otlp/v1/traces",
|
||||
Headers: new() { { "X-Seq-ApiKey", "y5YnBp12ZE1Czh4tzZWn" } }
|
||||
)
|
||||
)
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user