mirror of
https://github.com/actions/setup-go.git
synced 2025-09-06 10:16:02 -06:00
10 lines
270 B
TypeScript
10 lines
270 B
TypeScript
import * as core from '@actions/core';
|
|
|
|
export enum StableReleaseAlias {
|
|
Stable = 'stable',
|
|
OldStable = 'oldstable'
|
|
}
|
|
|
|
export const isSelfHosted = (): boolean =>
|
|
process.env['RUNNER_ENVIRONMENT'] !== 'github-hosted' &&
|
|
process.env['AGENT_ISSELFHOSTED'] !== '0';
|