This commit is contained in:
CrazyMax 2019-11-15 15:01:51 +01:00
parent 6fb76d901c
commit 094f87438c
No known key found for this signature in database
GPG Key ID: 3248E46B6BB8C7F7
2 changed files with 2 additions and 2 deletions

View File

@ -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) {

View File

@ -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');