我有一个在nuxt之上构建的aws放大项目。我正在尝试使用放大控制台设置CI。我的构建在部署阶段一直失败,由于某些原因,无法创建工件或找不到工件:
这是我的amplify.yml文件:
version: 0.1
backend:
phases:
build:
commands:
- '# Execute Amplify CLI with the helper script'
- amplifyPush --simple
frontend:
phases:
preBuild:
commands:
- npm install
build:
commands:
- npm run generate
artifacts:
baseDirectory: dist
files:
- '**/*'
cache:
paths:
- node_modules/**/*
如果我在本地运行npm run generate
,则将构建我的应用程序,并且可以在 dist 文件夹中找到它。
有人使用放大控制台成功地部署了放大/数字应用吗?
谢谢