From 00cc2961b7c742d375c8141fbd3dbe0e2eac3684 Mon Sep 17 00:00:00 2001 From: Grant Mitchell <35341268+grant350@users.noreply.github.com> Date: Thu, 23 Jun 2022 13:57:51 -0700 Subject: [PATCH] added what file type the github actions is I added this as it might be confusing for some people who dont write in yaml every day to know what file it is. it is best to explicitly state what file type it is --- language/nodejs/configure-ci-cd.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/language/nodejs/configure-ci-cd.md b/language/nodejs/configure-ci-cd.md index 7584791084..a1686a65bd 100644 --- a/language/nodejs/configure-ci-cd.md +++ b/language/nodejs/configure-ci-cd.md @@ -39,7 +39,7 @@ Before we start, ensure you can access [Docker Hub](https://hub.docker.com/) fro ## Set up the GitHub Actions workflow -In the previous section, we created a PAT and added it to GitHub to ensure we can access Docker Hub from any workflow. Now, let’s set up our GitHub Actions workflow to build and store our images in Hub. We can achieve this by creating two Docker actions: +In the previous section, we created a PAT and added it to GitHub to ensure we can access Docker Hub from any workflow. Now, let’s set up our GitHub Actions workflow to build and store our images in Hub. We can achieve this by creating two Docker actions in the YAML file below: 1. The first action enables us to log in to Docker Hub using the secrets we stored in the GitHub Repository. 2. The second one is the build and push action.