setup-go/src/utils.ts

11 lines
270 B
TypeScript
Raw Normal View History

import * as core from '@actions/core';
export enum StableReleaseAlias {
Stable = 'stable',
OldStable = 'oldstable'
}
export const isSelfHosted = (): boolean =>
process.env['RUNNER_ENVIRONMENT'] !== 'github-hosted' &&
2023-08-18 09:01:34 +02:00
process.env['AGENT_ISSELFHOSTED'] !== '0';