diff --git a/src/git.ts b/src/git.ts index 90e2c62c..824eb1c1 100644 --- a/src/git.ts +++ b/src/git.ts @@ -156,7 +156,10 @@ export async function deploy(): Promise { // Cleans up temporary files/folders and restores the git state. console.log("Running post deployment cleanup jobs... 🔧"); await execute(`rm -rf ${temporaryDeploymentDirectory}`, workspace); - await execute(`git checkout --progress --force ${action.defaultBranch}`, workspace) + await execute( + `git checkout --progress --force ${action.defaultBranch}`, + workspace + ); return Promise.resolve("Commit step complete..."); }