I specified a postdeploy script in my app.json. The build info in the heroku web interface shows "There was an issue while running the post deploy script."
{
"scripts": {
"postdeploy": "./bin/heroku_postdeploy"
},
How can I get the output / logs of my postdeploy script, to see what went wrong? heroku logs
does not show the output.
When I run the postdeploy script via heroku CLI everything works fine.