mirror of
https://github.com/JamesIves/github-pages-deploy-action.git
synced 2023-12-15 20:03:39 +08:00
Private Repository Issue (#71)
* git fetch origin does not work in private repositories
* Revert "git fetch origin does not work in private repositories"
This reverts commit e115e86689
.
* Origin issues
This commit is contained in:
parent
2b3be1b495
commit
9464f67397
@ -86,7 +86,7 @@ function deploy() {
|
|||||||
}
|
}
|
||||||
// Checks out the base branch to begin the deployment process.
|
// 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 checkout ${constants_1.action.baseBranch || "master"}`, constants_1.workspace);
|
||||||
yield util_1.execute(`git fetch origin`, constants_1.workspace);
|
yield util_1.execute(`git fetch ${constants_1.repositoryPath}`, constants_1.workspace);
|
||||||
yield util_1.execute(`git worktree add --checkout ${temporaryDeploymentDirectory} origin/${constants_1.action.branch}`, 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.
|
Pushes all of the build files into the deployment directory.
|
||||||
|
@ -76,7 +76,7 @@ export async function deploy(): Promise<any> {
|
|||||||
|
|
||||||
// Checks out the base branch to begin the deployment process.
|
// Checks out the base branch to begin the deployment process.
|
||||||
await execute(`git checkout ${action.baseBranch || "master"}`, workspace);
|
await execute(`git checkout ${action.baseBranch || "master"}`, workspace);
|
||||||
await execute(`git fetch origin`, workspace);
|
await execute(`git fetch ${repositoryPath}`, workspace);
|
||||||
await execute(
|
await execute(
|
||||||
`git worktree add --checkout ${temporaryDeploymentDirectory} origin/${action.branch}`,
|
`git worktree add --checkout ${temporaryDeploymentDirectory} origin/${action.branch}`,
|
||||||
workspace
|
workspace
|
||||||
|
Loading…
Reference in New Issue
Block a user