From 4393d04f59411b60b177f1f55e216bd3f850f20b Mon Sep 17 00:00:00 2001 From: David Justo Date: Mon, 30 Sep 2024 20:24:14 -0700 Subject: [PATCH] fix paths --- .github/workflows/smoketest-dotnet-isolated-v4.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/smoketest-dotnet-isolated-v4.yml b/.github/workflows/smoketest-dotnet-isolated-v4.yml index a64d031dc..5735a40ff 100644 --- a/.github/workflows/smoketest-dotnet-isolated-v4.yml +++ b/.github/workflows/smoketest-dotnet-isolated-v4.yml @@ -53,7 +53,7 @@ jobs: run: dotnet restore $solution - name: Build and pack WebJobs extension - run: cd /root/src/WebJobs.Extensions.DurableTask && \ + run: cd ./src/WebJobs.Extensions.DurableTask && \ mkdir /out && \ dotnet build -c Release WebJobs.Extensions.DurableTask.csproj --output /out && \ mkdir /packages && \ @@ -61,8 +61,7 @@ jobs: dotnet nuget add source /packages - name: Build .NET Isolated Smoke Test - run: cd /root/test/SmokeTests/OOProcSmokeTests/DotNetIsolated && \ - mkdir -p /home/site/wwwroot && \ + run: cd ./test/SmokeTests/OOProcSmokeTests/DotNetIsolated && \ dotnet restore --verbosity normal && \ dotnet build -c Release