mirror of
https://github.com/actions/runner.git
synced 2025-12-10 12:36:23 +00:00
20 lines
601 B
C#
20 lines
601 B
C#
using System;
|
|
|
|
namespace GitHub.Runner.Sdk
|
|
{
|
|
public class SdkConstants
|
|
{
|
|
public static class Variables
|
|
{
|
|
public static class Build
|
|
{
|
|
// Legacy "build" variables historically used by the runner
|
|
// DO NOT add new variables here -- instead use either the Actions or Runner namespaces
|
|
public const String BuildId = "build.buildId";
|
|
public const String BuildNumber = "build.buildNumber";
|
|
public const String ContainerId = "build.containerId";
|
|
}
|
|
}
|
|
}
|
|
}
|