Revert "git fetch origin does not work in private repositories"

This reverts commit e115e86689.
This commit is contained in:
James Ives 2019-11-27 00:27:34 -05:00
parent e115e86689
commit 799b93b852
2 changed files with 2 additions and 2 deletions

View File

@ -86,7 +86,7 @@ function deploy() {
}
// Checks out the base branch to begin the deployment process.
yield util_1.execute(`git checkout ${constants_1.action.baseBranch || "master"}`, constants_1.workspace);
yield util_1.execute(`git fetch ${constants_1.repositoryPath}`, constants_1.workspace);
yield util_1.execute(`git fetch origin`, constants_1.workspace);
yield util_1.execute(`git worktree add --checkout ${temporaryDeploymentDirectory} origin/${constants_1.action.branch}`, constants_1.workspace);
/*
Pushes all of the build files into the deployment directory.

View File

@ -76,7 +76,7 @@ export async function deploy(): Promise<any> {
// Checks out the base branch to begin the deployment process.
await execute(`git checkout ${action.baseBranch || "master"}`, workspace);
await execute(`git fetch ${repositoryPath}`, workspace);
await execute(`git fetch origin`, workspace);
await execute(
`git worktree add --checkout ${temporaryDeploymentDirectory} origin/${action.branch}`,
workspace