File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -31744,7 +31744,7 @@ class Artifacts {
3174431744 }
3174531745 async push() {
3174631746 await this.tags.collect();
31747- await this. git. add(["-f", Artifacts.TARGET_DIR] );
31747+ await exec.exec(` git add -f ${ Artifacts.TARGET_DIR}/*` );
3174831748 const commitResult = await this.git.commit("🚀 Build Artifacts");
3174931749 const pushingResult = await this.git.push();
3175031750 core.info(`Committed changes: ${commitResult.summary.changes}`);
Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ export class Artifacts {
4040 private async push ( ) {
4141 await this . tags . collect ( ) ;
4242
43- await this . git . add ( [ "-f" , Artifacts . TARGET_DIR ] ) ;
43+ await exec . exec ( ` git add -f ${ Artifacts . TARGET_DIR } /*` ) ;
4444 const commitResult = await this . git . commit ( "🚀 Build Artifacts" ) ;
4545 const pushingResult = await this . git . push ( ) ;
4646
You can’t perform that action at this time.
0 commit comments