After ~13min of running, the process finally fails saying there's "No such file or directory". I'm not really sure what I can do from my end since I've followed the examples of how to use `bitbucket-pipeline.yml` and what it should look like. The creds are setup with the environment variables and i can see some folders in the said bucket.
The folder it's failing on looks very long as well, so not sure if its running a loop and finally quits but here's the dir "fatal error: [Errno 2] No such file or directory: '//proc/1/root/proc/1/root/proc/1/root/proc/1/root/proc/1/root/proc/1/root/proc/1/root/proc/1/root/proc/1/root/proc/1/root/proc/1/root/proc/1/root/proc/1/root/proc/1/root/proc/1/root/proc/1/root/proc/1/root/proc/1/root/proc/1/root/proc/1/root/proc/1/root/proc/1/root/proc/1/root/proc/1/root/proc/1/root/proc/1/root/proc/1/root/proc/1/root/proc/1/root/dev/fd/10"
Is there something I'm missing?
Code below:
image: node:10.15.0
pipelines:
default:
- step:
name: Push to S3
script:
- pipe: atlassian/aws-s3-deploy:0.2.4
variables:
AWS_ACCESS_KEY_ID: $AWS_ACCESS_KEY_ID
AWS_SECRET_ACCESS_KEY: $AWS_SECRET_ACCESS_KEY
AWS_DEFAULT_REGION: 'us-east-1'
S3_BUCKET: 'some-bucket'
LOCAL_PATH: '/'
thx, shawn