Hosting a static website on AWS S3 bucket using Github Actions.
This is a tutorial on how to host a static website on AWS S3 buckets using Github Actions as our CI/CD tool of choice. By the time you're done, you should be able to host webpages for free on S3 and perform simple continuous integration tasks right f...
bubu.hashnode.dev8 min read
Thanks for sharing this article. I used it along with one other to deploy my portfolio and it was helpful!
Here are some work-arounds I used for mine:
1) For the issue about the AccessControlList error, instead of enabling ACLs under Object Ownership, I added the access I needed from the build error I was getting. I added it in the Bucket policy under
Actionsi.e"Action": [ "s3:GetObject", "s3:GetObjectVersion", "s3:PutObject", ],2) My .yml file was different, it had more jobs to run as it was for a React app.
Thanks again