Feature request: Exit the process after the git push is finished
scottjacobsen opened this issue · 2 comments
scottjacobsen commented
When you do a git push deploy to heroku the entire build log streams back to the terminal. Our build takes about 10 minutes, so this is burning GH actions time 💸 . However, once the push is complete the git process can exit, and the build will continue on heroku. Is it possible for the process to push, then exit rather than streaming all the build output back?
jeremyjh commented
The git push doesn't actually complete. If you run git push to Heroku locally, you'll see the call does not exit until build/release is finished.
davidwparker commented
Having this issue too. Anyway to run it async?
Using exec
instead of execSync
?