Respect username on macOS self-hosted runners

Right now it's hardcoded to "runner"
This commit is contained in:
fedor 2023-07-25 17:33:30 -04:00
parent 61a6322f88
commit c4679e72ad
2 changed files with 2 additions and 2 deletions

2
dist/setup/index.js vendored
View File

@ -69859,7 +69859,7 @@ function run() {
var _a;
return __awaiter(this, void 0, void 0, function* () {
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

@ -73,7 +73,7 @@ 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()) {