mirror of
https://github.com/videojs/video.js.git
synced 2024-11-24 08:42:25 +02:00
chore: use aws s3 cp rather than sync (#7400)
Sync needs extra permissions, like ListObject, to function, but the keys we have are the most minimal that are possible. Instead, we should copy local files unconditionally.
This commit is contained in:
parent
87d4dce5e6
commit
dae1266bce
2
.github/workflows/release.yml
vendored
2
.github/workflows/release.yml
vendored
@ -90,4 +90,4 @@ jobs:
|
||||
|
||||
- name: Copy files to the CDN with the AWS CLI
|
||||
run: |
|
||||
aws s3 sync node_modules/video.js/dist/ s3://${S3_BUCKET}/${S3_KEY}/${VJS_VERSION}/ --acl ${S3_ACCESS}
|
||||
aws s3 cp node_modules/video.js/dist s3://${S3_BUCKET}/${S3_KEY}/${VJS_VERSION}/ --acl ${S3_ACCESS} --recursive
|
||||
|
Loading…
Reference in New Issue
Block a user