7 Commits

Author SHA1 Message Date
Jedd Morgan 49973ac7f4 Bump automate sdk 2025-06-04 11:16:45 +01:00
Jedd Morgan b697e3c964 bump automate compose 2025-05-30 15:32:57 +01:00
Jedd Morgan 449c4f2f5e Nowarn NETSDK1206 2025-05-30 13:42:22 +01:00
Jedd Morgan 0b30eb700a Use nuget 2025-05-30 13:39:39 +01:00
Jedd Morgan e5b5244bc8 Updated CI 2025-05-30 13:22:53 +01:00
Jedd Morgan 8b73f0c37e comments 2025-05-28 23:39:09 +01:00
Jedd Morgan 062e08b1b2 First pass 2025-05-28 23:37:47 +01:00
4 changed files with 7 additions and 7 deletions
+2 -2
View File
@@ -11,9 +11,9 @@ jobs:
FUNCTION_SCHEMA_FILE_NAME: functionSchema.json
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v4
- name: Setup .NET Core SDK
uses: actions/setup-dotnet@v5
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.x.x
- name: Restore dependencies
+2 -2
View File
@@ -6,9 +6,9 @@ jobs:
build-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v4
- name: Setup .NET Core SDK
uses: actions/setup-dotnet@v5
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.x.x
- name: Restore dependencies
+2 -2
View File
@@ -1,10 +1,10 @@
FROM mcr.microsoft.com/dotnet/sdk:8.0 as build-env
FROM mcr.microsoft.com/dotnet/sdk:7.0 as build-env
WORKDIR /src
COPY SpeckleAutomateDotnetExample/ .
RUN dotnet restore --use-current-runtime
RUN dotnet publish --use-current-runtime --self-contained false --no-restore -o /publish
FROM mcr.microsoft.com/dotnet/runtime:8.0 as runtime
FROM mcr.microsoft.com/dotnet/runtime:7.0 as runtime
WORKDIR /publish
COPY --from=build-env /publish .
@@ -10,7 +10,7 @@
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="8.0.1" />
<PackageReference Include="Speckle.Automate.Sdk" Version="3.4.0-alpha.20" />
<PackageReference Include="Speckle.Automate.Sdk" Version="3.4.0-alpha.15" />
</ItemGroup>
</Project>