How to configure CI/CD Create-T3-Turbo on Amplify

When i try to create upload my project to amplify and shows me this error
i've put a command ls to see if after build is creating a .next on apps/web and nothing with name .next

this project inittialy is create-t3-app and transformed to t3-turbo to add expo
this is my amplify.yml
version: 1
applications:
  - frontend:
      phases:
        preBuild:
          commands:
            - npx pnpm install
        build:
          commands:
            - npx turbo run build --filter=web && ls -all apps/web
      artifacts:
        baseDirectory: apps/web/.next
        files:
          - "**/*"
      cache:
        paths:
          - .next/cache/*/
          - node_modules/*/
      buildPath: /
    appRoot: apps/web
image.png
Was this page helpful?