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