Error failed to fetch an image or build from source: not a valid image:

Hi, I started getting this error after I moved one of my apps from one organization to another, I don’t know if I have to change anything else in order to make it work again. I’m making the deploy from github actions. When I deploy using fly deploy --local-only it works normally.

==> Verifying app config
--> Verified app config
==> Building image
Searching for image 'registry.fly.io/xxx' remotely...
Error failed to fetch an image or build from source: not a valid image: registry.fly.io/xxx

This is my fly.toml

app = "villing"
kill_signal = "SIGINT"
kill_timeout = 5
processes = [ ]

[env]
PORT = "8080"

[deploy]
release_command = "npx prisma migrate deploy"

[experimental]
allowed_public_ports = [ ]
auto_rollback = true

[[services]]
internal_port = 8_080
processes = [ "app" ]
protocol = "tcp"
script_checks = [ ]

  [services.concurrency]
  hard_limit = 25
  soft_limit = 20
  type = "connections"

  [[services.ports]]
  handlers = [ "http" ]
  port = 80
  force_https = true

  [[services.ports]]
  handlers = [ "tls", "http" ]
  port = 443

  [[services.tcp_checks]]
  grace_period = "1s"
  interval = "15s"
  restart_limit = 0
  timeout = "2s"

  [[services.http_checks]]
  interval = "10s"
  grace_period = "5s"
  method = "get"
  path = "/healthcheck"
  protocol = "http"
  timeout = "2s"
  tls_skip_verify = false
  headers = { }