AkhileshNS / heroku-deploy

A simple github action that dynamically deploys an app to heroku

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Feature request: Exit the process after the git push is finished

scottjacobsen opened this issue · comments

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?

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.

Having this issue too. Anyway to run it async?
Using exec instead of execSync?