...

/

GitHub Actions CD Setup

GitHub Actions CD Setup

Learn to set up basic GitHub Actions CD.

We'll cover the following...

As we have the CI workflow up and running, we can extend our GitHub Actions workflow to deploy our serverless application if all tests pass. The deployment will be done using the sls deploy command from the Serverless Framework. We'll also need to securely pass AWS credentials to the GitHub Actions environment.

Adding secrets

Let's first add AWS credentials, to our GitHub repository:

  1. Navigate to our GitHub repository in our web browser.

  2. Click the “Settings” tab of the repository.

  3. In the ...