The following is a blanket way to make all the objects in a bucket public.
Bucket → Permissions → Bucket Policy
Paste the following
{
"Version": "2012-10-17",
"Statement": {
"Action": "s3:GetObject",
"Effect": "Allow",
"Resource": "arn:aws:s3:::my-bucket/*",
"Principal": "*"
}
}