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

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()) {