14 lines
417 B
TypeScript
14 lines
417 B
TypeScript
import path from 'path';
|
|
import fs from 'fs';
|
|
import YAML from 'yaml';
|
|
import Input from '../input';
|
|
|
|
export function ReadLicense() {
|
|
if (Input.cloudRunnerCluster === 'local') {
|
|
return '';
|
|
}
|
|
const pipelineFile = path.join(__dirname, `.github`, `workflows`, `cloud-runner-k8s-pipeline.yml`);
|
|
|
|
return fs.existsSync(pipelineFile) ? YAML.parse(fs.readFileSync(pipelineFile, 'utf8')).env.UNITY_LICENSE : '';
|
|
}
|