Compare commits
7 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 49973ac7f4 | |||
| b697e3c964 | |||
| 449c4f2f5e | |||
| 0b30eb700a | |||
| e5b5244bc8 | |||
| 8b73f0c37e | |||
| 062e08b1b2 |
@@ -11,9 +11,9 @@ jobs:
|
|||||||
FUNCTION_SCHEMA_FILE_NAME: functionSchema.json
|
FUNCTION_SCHEMA_FILE_NAME: functionSchema.json
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v6
|
- uses: actions/checkout@v4
|
||||||
- name: Setup .NET Core SDK
|
- name: Setup .NET Core SDK
|
||||||
uses: actions/setup-dotnet@v5
|
uses: actions/setup-dotnet@v4
|
||||||
with:
|
with:
|
||||||
dotnet-version: 8.x.x
|
dotnet-version: 8.x.x
|
||||||
- name: Restore dependencies
|
- name: Restore dependencies
|
||||||
|
|||||||
@@ -6,9 +6,9 @@ jobs:
|
|||||||
build-test:
|
build-test:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v6
|
- uses: actions/checkout@v4
|
||||||
- name: Setup .NET Core SDK
|
- name: Setup .NET Core SDK
|
||||||
uses: actions/setup-dotnet@v5
|
uses: actions/setup-dotnet@v4
|
||||||
with:
|
with:
|
||||||
dotnet-version: 8.x.x
|
dotnet-version: 8.x.x
|
||||||
- name: Restore dependencies
|
- name: Restore dependencies
|
||||||
|
|||||||
+2
-2
@@ -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
|
WORKDIR /src
|
||||||
COPY SpeckleAutomateDotnetExample/ .
|
COPY SpeckleAutomateDotnetExample/ .
|
||||||
RUN dotnet restore --use-current-runtime
|
RUN dotnet restore --use-current-runtime
|
||||||
RUN dotnet publish --use-current-runtime --self-contained false --no-restore -o /publish
|
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
|
WORKDIR /publish
|
||||||
COPY --from=build-env /publish .
|
COPY --from=build-env /publish .
|
||||||
@@ -10,7 +10,7 @@
|
|||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="8.0.1" />
|
<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>
|
</ItemGroup>
|
||||||
|
|
||||||
</Project>
|
</Project>
|
||||||
|
|||||||
Reference in New Issue
Block a user