Compare commits

...

3 Commits

Author SHA1 Message Date
Fedor Korotkov e454c75fc9
Merge 2750121aa7 into 9c76e71650 2024-10-22 13:55:09 +05:45
fedor 2750121aa7 Formatted code 2023-08-01 10:51:33 -06:00
fedor c4679e72ad Respect username on macOS self-hosted runners
Right now it's hardcoded to "runner"
2023-07-25 17:33:30 -04:00
2 changed files with 5 additions and 2 deletions

2
dist/setup/index.js vendored
View File

@ -91842,7 +91842,7 @@ function run() {
return __awaiter(this, void 0, void 0, function* () {
var _a;
if (utils_1.IS_MAC) {
process.env['AGENT_TOOLSDIRECTORY'] = '/Users/runner/hostedtoolcache';
process.env['AGENT_TOOLSDIRECTORY'] = path.join(os.homedir(), 'hostedtoolcache');
}
if ((_a = process.env.AGENT_TOOLSDIRECTORY) === null || _a === void 0 ? void 0 : _a.trim()) {
process.env['RUNNER_TOOL_CACHE'] = process.env['AGENT_TOOLSDIRECTORY'];

View File

@ -78,7 +78,10 @@ function resolveVersionInput() {
async function run() {
if (IS_MAC) {
process.env['AGENT_TOOLSDIRECTORY'] = '/Users/runner/hostedtoolcache';
process.env['AGENT_TOOLSDIRECTORY'] = path.join(
os.homedir(),
'hostedtoolcache'
);
}
if (process.env.AGENT_TOOLSDIRECTORY?.trim()) {