Merge branch 'init-commit' into releases/v4-init

This commit is contained in:
James Ives 2022-04-27 10:41:49 -04:00
commit 781d9e3ced

View File

@ -21,8 +21,14 @@ export async function init(action: ActionInterface): Promise<void | Error> {
info(`Deploying using ${action.tokenType}… 🔑`) info(`Deploying using ${action.tokenType}… 🔑`)
info('Configuring git…') info('Configuring git…')
async function configure(throwOnError: boolean) { await execute(`git init`, action.workspace, action.silent)
try {
await execute(
`git commit -m "Initial commit" --allow-empty`,
action.workspace,
action.silent
)
await execute( await execute(
`git config --global --add safe.directory "${action.workspace}"`, `git config --global --add safe.directory "${action.workspace}"`,
action.workspace, action.workspace,
@ -46,30 +52,6 @@ export async function init(action: ActionInterface): Promise<void | Error> {
action.workspace, action.workspace,
action.silent action.silent
) )
} catch {
info(
'There was a problemissue initilizing git, attempting to resolve …'
)
if (throwOnError) {
throw new Error()
}
}
}
try {
await configure(false)
} catch {
// Attempt to re-run if initial configuration failed using git init.
await execute(`git init`, action.workspace, action.silent)
await execute(
`git commit -m "Initial commit" --allow-empty`,
action.workspace,
action.silent
)
await configure(true)
}
try { try {
if ((process.env.CI && !action.sshKey) || action.isTest) { if ((process.env.CI && !action.sshKey) || action.isTest) {