Deployment to Render (Yarn versions)

Hey @voltore, does your buildCommand in render.yaml have corepack enable in it at the start like this?

services:
- name: my-app-web
  # ...
  buildCommand: corepack enable && yarn install && yarn rw deploy render web
  # ...

Same for the api:

- name: my-app-api
  # ...
  buildCommand: corepack enable && yarn && yarn rw build api
  # ...