Add all
This commit is contained in:
parent
6fb76d901c
commit
094f87438c
|
@ -53,7 +53,7 @@ function run() {
|
||||||
core.info('⚠️ Nothing to deploy');
|
core.info('⚠️ Nothing to deploy');
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
yield exec.exec('git', ['add', '.']);
|
yield exec.exec('git', ['add', '--all', '.']);
|
||||||
let gitCommitCmd = [];
|
let gitCommitCmd = [];
|
||||||
gitCommitCmd.push('commit');
|
gitCommitCmd.push('commit');
|
||||||
if (allow_empty_commit) {
|
if (allow_empty_commit) {
|
||||||
|
|
|
@ -40,7 +40,7 @@ async function run() {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
await exec.exec('git', ['add', '.']);
|
await exec.exec('git', ['add', '--all', '.']);
|
||||||
|
|
||||||
let gitCommitCmd: Array<string> = [];
|
let gitCommitCmd: Array<string> = [];
|
||||||
gitCommitCmd.push('commit');
|
gitCommitCmd.push('commit');
|
||||||
|
|
Loading…
Reference in New Issue
Block a user