mirror of
https://github.com/actions/setup-go.git
synced 2025-04-05 03:16:34 +08:00
15 lines
541 B
TypeScript
15 lines
541 B
TypeScript
export enum StableReleaseAlias {
|
|
Stable = 'stable',
|
|
OldStable = 'oldstable'
|
|
}
|
|
|
|
export const isSelfHosted = (): boolean =>
|
|
process.env['AGENT_ISSELFHOSTED'] === '1' ||
|
|
(process.env['AGENT_ISSELFHOSTED'] === undefined &&
|
|
process.env['RUNNER_ENVIRONMENT'] !== 'github-hosted');
|
|
/* the above is simplified from:
|
|
process.env['RUNNER_ENVIRONMENT'] === undefined && process.env['AGENT_ISSELFHOSTED'] === '1'
|
|
||
|
|
process.env['AGENT_ISSELFHOSTED'] === undefined && process.env['RUNNER_ENVIRONMENT'] !== 'github-hosted'
|
|
*/
|