CodeDeploy Error: “The revision size is too large. Its maximum size is 51200B.”
问题 I'm trying to set up a deployment process as follows: Travis-CI.com grabs the codebase (NodeJS), builds and tests it, uploads it to S3 as a zip and then kicks off a CodeDeploy deployment (ECS). Here is my .travis.yml : language: node_js node_js: - '12' before_deploy: - zip -rq latest * - mkdir -p upload - mv latest.zip upload/latest.zip deploy: - provider: s3 bucket: "myBucket" access_key_id: secure: keystuff secret_access_key: secure: keystuff local_dir: upload skip_cleanup: true on: branch: