From 2cd2969bba71914b26c6163bd0edc60d954f9fa6 Mon Sep 17 00:00:00 2001 From: Benjamin Nuernberger Date: Tue, 6 Feb 2024 21:17:39 -0800 Subject: [PATCH] fix: add missing Newtonsoft.Json.dll --- .github/workflows/on-push-to-release-branch.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/on-push-to-release-branch.yaml b/.github/workflows/on-push-to-release-branch.yaml index 92b41e35..8288cd3e 100644 --- a/.github/workflows/on-push-to-release-branch.yaml +++ b/.github/workflows/on-push-to-release-branch.yaml @@ -68,7 +68,7 @@ jobs: dotnet publish --configuration Release -f netstandard2.0 -p:DefineConstants=USE_GRPC_WEB -p:VersionPrefix=${VERSION} mkdir ./bin/Release/netstandard2.0/MomentoSdkUnity pushd ./bin/Release/netstandard2.0/publish/ - cp Google.Protobuf.dll Grpc.Core.Api.dll Grpc.Net.Client.dll Grpc.Net.Client.Web.dll Grpc.Net.Common.dll JWT.dll Microsoft.Bcl.AsyncInterfaces.dll Microsoft.Extensions.Logging.Abstractions.dll Momento.Protos.dll Momento.Sdk.dll System.Diagnostics.DiagnosticSource.dll System.Runtime.CompilerServices.Unsafe.dll System.Threading.Channels.dll ../MomentoSdkUnity/ + cp Google.Protobuf.dll Grpc.Core.Api.dll Grpc.Net.Client.dll Grpc.Net.Client.Web.dll Grpc.Net.Common.dll JWT.dll Microsoft.Bcl.AsyncInterfaces.dll Microsoft.Extensions.Logging.Abstractions.dll Momento.Protos.dll Momento.Sdk.dll Newtonsoft.Json.dll System.Diagnostics.DiagnosticSource.dll System.Runtime.CompilerServices.Unsafe.dll System.Threading.Channels.dll ../MomentoSdkUnity/ popd zip -jr MomentoSdkUnity.zip bin/Release/netstandard2.0/MomentoSdkUnity/ ZIP_FILE=./MomentoSdkUnity.zip