Summary
Gets the path to path file to add a path to system path that the following steps in a job can use.
- Namespace
- Cake
.Common .Build .GitHubActions .Data - Containing Type
- Git
Hub Actions Runtime Info
Syntax
public FilePath SystemPath { get; }
Examples
if (BuildSystem.GitHubActions.IsRunningOnGitHubActions)
{
Information(@"Runtime SystemPath: {0}", BuildSystem.GitHubActions.Environment.Runtime.SystemPath);
}
if (GitHubActions.IsRunningOnGitHubActions)
{
Information(@"Runtime SystemPath: {0}", GitHubActions.Environment.Runtime.SystemPath);
}
Value
| Type | Description |
|---|---|
| FilePath | The path to path file to add a path to system path that the following steps in a job can use. |
