1
0
Fork 0
mirror of https://github.com/actions/checkout.git synced 2025-04-03 15:00:06 +02:00

update the correct config

This commit is contained in:
Jonathan Grimes 2020-02-28 10:53:55 -06:00
parent 72b08f7601
commit 01e894d3c0
No known key found for this signature in database
GPG key ID: 103F2E43AA0E4DF8
2 changed files with 6 additions and 2 deletions

4
dist/index.js vendored
View file

@ -5631,7 +5631,9 @@ function configureAuthToken(git, authToken, global) {
const basicCredential = Buffer.from(`x-access-token:${authToken}`, 'utf8').toString('base64');
core.setSecret(basicCredential);
// Replace the value in the config file
const configPath = path.join(git.getWorkingDirectory(), '.git', 'config');
const configPath = global
? path.join(process.env.HOME, '.gitconfig')
: path.join(git.getWorkingDirectory(), '.git', 'config');
let content = (yield fs.promises.readFile(configPath)).toString();
const placeholderIndex = content.indexOf(placeholder);
if (placeholderIndex < 0 ||

View file

@ -285,7 +285,9 @@ async function configureAuthToken(
core.setSecret(basicCredential)
// Replace the value in the config file
const configPath = path.join(git.getWorkingDirectory(), '.git', 'config')
const configPath = global
? path.join(process.env.HOME as string, '.gitconfig')
: path.join(git.getWorkingDirectory(), '.git', 'config')
let content = (await fs.promises.readFile(configPath)).toString()
const placeholderIndex = content.indexOf(placeholder)
if (