feat(CI): Add Continuous Integration workflows for Gitea with Docker-based setup

This commit is contained in:
2025-01-29 18:00:43 +01:00
parent b46fb0f042
commit 2d1c037301
14 changed files with 250 additions and 44 deletions

View File

@@ -56,7 +56,7 @@ export class Watcher {
logger.log('ok', `executing ${this.options.commandToExecute} for the first time`);
}
this.currentExecution = await this.smartshellInstance.execStreaming(
this.options.commandToExecute
this.options.commandToExecute,
);
} else {
console.log('no executionCommand set');
@@ -64,7 +64,7 @@ export class Watcher {
if (this.options.functionToCall) {
this.options.functionToCall();
} else {
console.log('no functionToCall set.')
console.log('no functionToCall set.');
}
}