Been having this issue all day thinking it was something wrong with my migration command. But I’ve since tired out the following and it still hangs:
==> Creating release
--> release v138 created
--> You can detach the terminal anytime without stopping the deployment
==> Release command detected: exit 1
--> This release will not be available until the release command succeeds.
Running release task (pending)... 🌍 ```
It should immediately exit and fail the deploy, no?
config:
app = "rtg-staging"
kill_signal = "SIGINT"
kill_timeout = 5
processes = []
[deploy]
release_command = "exit 1"
#release_command = "npx prisma db seed"
#release_command = "npx prisma migrate reset --force"
#strategy = "immediate"
[env]
PORT = "8080"
NODE_ENV = "production"
[experimental]
allowed_public_ports = []
auto_rollback = true
[[services]]
internal_port = 8080
processes = ["app"]
protocol = "tcp"
script_checks = []
[services.concurrency]
hard_limit = 250
soft_limit = 200
type = "connections"
[[services.http_checks]]
grace_period = "5s"
interval = "10s"
method = "get"
path = "/healthcheck"
protocol = "http"
timeout = "2s"
tls_skip_verify = false
[services.http_checks.headers]
[[services.ports]]
force_https = true
handlers = ["http"]
port = 80
[[services.ports]]
handlers = ["tls", "http"]
port = 443
[[services.tcp_checks]]
grace_period = "1s"
interval = "15s"
restart_limit = 0
timeout = "2s"