From eaa4042b09ca6117f77c017c528555120c65afb2 Mon Sep 17 00:00:00 2001 From: feselene Date: Thu, 10 Oct 2024 07:25:04 -0400 Subject: [PATCH] changne timeout command to use release/runtimes/Core.dll path. For some reason runtimes is in the path now --- .github/workflows/test-publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test-publish.yml b/.github/workflows/test-publish.yml index 8154a798..b7df5ca0 100644 --- a/.github/workflows/test-publish.yml +++ b/.github/workflows/test-publish.yml @@ -18,7 +18,7 @@ jobs: cd src/Core dotnet run -- gendefaultconfig --outfile=config.json dotnet publish -c Release - timeout --preserve-status -k1 3 dotnet ../artifacts/publish/Core/release/Core.dll start -m dummy || exit_code=$? + timeout --preserve-status -k1 3 dotnet ../artifacts/publish/Core/release/runtimes/Core.dll start -m dummy || exit_code=$? if [ $exit_code -ne 143 ]; then echo "expected exit code 143, which means the program handled SIGTERM, but got $exit_code" exit 1