Has anyone been able to successfully deploy code using Wercker S3Sync? I'm finding that most of the documentation that exists is for the old version of Wercker and the new version seems to work differently. Specifically, it appears there was a deploy step through the Wercker GUI that no longer exists.
Here is my wrecker.yml file:
box: ruby
build:
steps:
deploy:
steps:
- s3sync:
source_dir: app/
key-id: $S3_ACCESS_KEY_ID
key-secret: $S3_SECRET_KEY
bucket-url: s3://$S3_BUCKET_NAME
I'm able to pull from Bitbucket and successfully build. The wercker interface shows a successfully deployment and the "store" step shows "storing artifacts complete", yet, my S3 bucket is empty.