mirror of
https://gitea.com/actions/setup-java.git
synced 2024-11-04 19:10:32 +01:00
Use $HOME directory
This commit is contained in:
parent
797045350f
commit
1dac4fef05
@ -16,8 +16,7 @@ export async function configAuthentication(
|
||||
console.log(
|
||||
`creating ${SETTINGS_FILE} with server-id: ${id}, username: ${username}, and a password`
|
||||
);
|
||||
const home: string = process.env['GITHUB_WORKSPACE'] || os.homedir();
|
||||
const directory: string = path.join(home, M2_DIR);
|
||||
const directory: string = path.join(os.homedir(), M2_DIR);
|
||||
await io.mkdirP(directory);
|
||||
core.debug(`created directory ${directory}`);
|
||||
await write(directory, generate(id, username, password));
|
||||
|
Loading…
Reference in New Issue
Block a user