Я пытаюсь развернуть приложение в AWS с помощью CircleCI.
Я просмотрел документ и ссылаюсь на https://circleci.com/docs/2.0/deployment-integrations/
Я не могу понять использование команды в AWS
> steps:
> - run:
> name: Deploy to S3 if tests pass and branch is Master
> command: aws s3 sync jekyll/_site/docs s3://circle-production-static-site/docs/ --delete
Я попытался запустить базовый YML
version: 2
jobs:
# build and test jobs go here
deploy-job:
docker:
- image: testapp1234/lamp_new:part1
# working_directory: /tmp/my-project
steps:
- run:
name: Deploy to S3 if tests pass and branch is Master
command: echo "Hello"
# command: aws s3 sync jekyll/_site/docs s3://circle-production-static-site/docs/ --delete
Я получил эту ошибку в CircleCI
no subschema matched out of the total 2 subschemas
required key [workflows] not found
jobs: required key [build] not found
Как я могу использовать это для развертывания моего приложения в экземпляре AWS. Могу ли я развернуть докер-контейнеры с помощью этой команды?
Я не могу понять использование рабочих процессов здесь.