2 Commits

Author SHA1 Message Date
Claire Kuang 3a9435bbe9 Update SpeckleAutomateDotnetExample.csproj 2023-10-27 16:52:02 +01:00
Alan Rynne 9ac1756937 feat: Add return to Program.cs Main call 2023-10-27 11:12:44 +02:00
3 changed files with 6 additions and 7 deletions
+2 -3
View File
@@ -1,9 +1,8 @@
name: "build and deploy Speckle functions"
on:
workflow_dispatch:
push:
tags:
- '*'
branches:
- main
jobs:
publish-automate-function-version: # make sure the action works on a clean machine without building
+1 -1
View File
@@ -1,6 +1,6 @@
using Speckle.Automate.Sdk;
// WARNING do not delete this call, this is the actual execution of your function
await AutomationRunner
return await AutomationRunner
.Main<FunctionInputs>(args, AutomateFunction.Run)
.ConfigureAwait(false);
@@ -8,7 +8,7 @@
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Speckle.Automate.Sdk" Version="2.17.0-automate2" />
<PackageReference Include="Speckle.Objects" Version="2.17.0-automate2" />
<PackageReference Include="Speckle.Automate.Sdk" Version="2.17.0-automate3" />
<PackageReference Include="Speckle.Objects" Version="2.17.0-automate3" />
</ItemGroup>
</Project>
</Project>