mirror of
https://github.com/JamesIves/github-pages-deploy-action.git
synced 2023-12-15 20:03:39 +08:00
More debugging
This commit is contained in:
parent
9d31ce2ef4
commit
44a73794b6
@ -84,6 +84,7 @@ function deploy() {
|
||||
console.log("Deployment branch does not exist. Creating....");
|
||||
yield generateBranch();
|
||||
}
|
||||
yield util_1.execute(`git switch -t origin/${constants_1.action.baseBranch}`, constants_1.action.build);
|
||||
console.log('list', yield util_1.execute(`ls`, constants_1.action.build));
|
||||
yield util_1.execute(`git add .`, constants_1.action.build);
|
||||
yield util_1.execute(`git commit -m "Deploying to ${constants_1.action.branch} from ${constants_1.action.baseBranch} ${process.env.GITHUB_SHA}" --quiet`, constants_1.action.build);
|
||||
|
@ -73,6 +73,8 @@ export async function deploy(): Promise<any> {
|
||||
await generateBranch();
|
||||
}
|
||||
|
||||
await execute(`git switch -t origin/${action.baseBranch}`, action.build)
|
||||
|
||||
console.log('list', await execute(`ls`, action.build))
|
||||
|
||||
await execute(`git add .`, action.build);
|
||||
|
Loading…
Reference in New Issue
Block a user