diff --git a/src/Runner.Worker/Handlers/StepHost.cs b/src/Runner.Worker/Handlers/StepHost.cs index ea4b60fdf06..fd953786ecb 100644 --- a/src/Runner.Worker/Handlers/StepHost.cs +++ b/src/Runner.Worker/Handlers/StepHost.cs @@ -61,7 +61,7 @@ public string ResolvePathForStepHost(IExecutionContext executionContext, string public Task DetermineNodeRuntimeVersion(IExecutionContext executionContext, string preferredVersion) { - if(System.Runtime.InteropServices.RuntimeInformation.RuntimeIdentifier.Contains("alpine")) { + if(System.Runtime.InteropServices.RuntimeInformation.RuntimeIdentifier.Contains("musl") || System.Runtime.InteropServices.RuntimeInformation.RuntimeIdentifier.Contains("alpine")) { return Task.FromResult(preferredVersion + "_alpine"); } return Task.FromResult(preferredVersion);