Hello,
My travis-ci has been working fine and copying files across to s3 ok until today 5th Jan 2021 about an hour ago (6pm GMT) - it was ok this morning.
The .travis.yml is just
deploy:
# move everything from this project into the s3 bucket
provider: s3
access_key_id: $AWS_ACCESS_ID
secret_access_key: $AWS_SECRET_ID
I created a new IAM user in AWS and changed the access and secret env keys in travis just in case somehow they had expired - but still get the same issue.
When the copy to aws s3 was working in the logs I could see:
travis_fold:end:dpl.1
Logging in with Access Key: ****************5NVD
Beginning upload of 3552 files with 5 threads.
travis_fold:start:dpl.2
e[33mPreparing deploye[0m
travis_fold:end:dpl.2
travis_fold:start:dpl.3
e[33mDeploying applicatione[0m
uploading "tile-wide.png" with {:content_type=>"image/png", :acl=>"public-read"}
But now it is failing I can see the following (which looks like the env variable name isn’t being replaced with the value)
travis_fold:end:dpl.1
Logging in with Access Key: ****************S_ID
Beginning upload of 3552 files with 5 threads.
travis_fold:start:dpl.2
e[33mPreparing deploye[0m
travis_fold:end:dpl.2
travis_fold:start:dpl.3
e[33mDeploying applicatione[0m
uploading "tile-wide.png" with {:content_type=>"image/png", :acl=>"public-read"}
Although in the logs I can still see :
e[33;1mSetting environment variables from repository settingse[0m
$ export AWS_ACCESS_ID=[secure]
$ export AWS_SECRET_ID=[secure]
Any ideas? Has something changed in travis?
Cheers
Mat