Automating Deployment with GitHub Actions
Create a GitHub workflow to automate frontend deployment on AWS S3 bucket.
We'll cover the following...
Earlier we explored how GitHub Actions make the flow of deployment easier, more secure, and more reliable for developers. That is why, in this lesson, we are also using GitHub Actions to automate the deployment of the React application.
There is a GitHub action for AWS called configure-aws-credentials
. We will use this action to configure AWS credentials in the workflow to execute a command to upload the content of the build folder in the S3 bucket created earlier. But before that, we will follow the same workflow of CI/CD:
Install the dependencies of the project.
Run tests to make sure ...